Hi,
I'm having a problem with the text-shadow property. Firstly, here is the code:
So this is how the problem manifests itself.
The shadow from the "s" in "Rooms" overlaps the letter "m". The shadow from "m" overlaps the letter "o" and so on. There must be some way to keep the shadows behind the text.
I'm having a problem with the text-shadow property. Firstly, here is the code:
Code:
<div id="logo"> <h1>Rooms</h1> <h2>Forums</h2> </div> <!--end of logo div-->
Code:
div#logo h1{ font-size: 2.4em; font-weight: 900; font-family: Arial Black; color: #c87276; padding: 49px 0px 0px 0px; margin: 0; letter-spacing: -0.0em; line-height:90%; text-shadow: -6px 6px 2px #000000; }
The shadow from the "s" in "Rooms" overlaps the letter "m". The shadow from "m" overlaps the letter "o" and so on. There must be some way to keep the shadows behind the text.
Comment