Forum Moderators: not2easy
I've got a navigation bar which I want to change the link color of the landing page. a:link is red; a:hover is yellow. landing color (class .active) is blue. Here's the trick, I want to keep the href on the landing link, but just alter it from a real url to a <a href="#">some link</a>
so, for the landing link style, I've got the property shows:
a.active {
color: #3333FF;
}
and the html is:
<li><a href="#" class="active">some link</a></li>
Works in everything but IE. Anyone know what I'm doing wrong... or if there's an IE-specific work around or syntax I should be using?
Neophyte