Likewise, it works fine for me in Firefox. Make sure to reload the page to refresh your browser cache.
As Ryan says, there are various ways to set the link to its hover state when the page is selected. There are fancy ways to do it, but you could do it manually, as Ryan said, by adding class="current" to the the <a>. For example, on the About page, add this:
Code:
<a href="about.html" class="current">About</a>
And then add this to your style sheet:
Code:
a:active, a.current {
background-color: #FFFFFF;
border-bottom: thick solid #435E7B;
color: #435E7B;
height: 25px;
text-decoration: none;
text-transform: uppercase;
width: 160px;
}
Bookmarks