Sent by Tim Rivera on 30 September 2002 03:03
> Please look at http://http://66.227.56.7/~dalynco/
> The style sheet can be found at
http://66.227.56.7/~dalynco/dalynstyles.css
>
> I am having trouble getting the bottom navigation links to perform
> correctly. The first item ("Home") is obviously not picking up the style
> from the style sheet correctly
.footernav a:hover { color: #990033; text-decoration: underline}
The above rule applies styles to links inside the "footernav" class. "Home"
does not receive the styling because there is not a link inside the span.
<a href="index.html"><span class="footernav">Home</span></a>
Tim