Hi All
the following code for highlighting current page works fine in FF but no luck with IE.
Is there an known hack? I've googled a bit but couldn't find anything.
.navigation a:link {color: #FFFF00; text-decoration:none;}
.navigation a:visited {color:#000000; text-decoration:none}
.navigation a:hover {color:#c1753e; text-decoration:none}
.navigation a:active {color:#000000; text-decoration:none;}
body#homepage a#home,
body#gallery a#gallery,
body#biography a#biography,
body#exhibitions a#exhibitions,
body#contact #acontact
{
color: #000000;
}
corresponding HTML:
<body id="homepage">
<ul>
<li><a href="index.html" id="home">Home</a></li>
<li><a href="gallery.html" id="gallery">Gallery</a></li>
<li><a href="biography.html" id="biography">About the artist</a></li>
<li><a href="exhibitions.html" id="exhibitions">Exhibitions</a></li>
<li><a href="contact.html" id="contact">Contact</a></li>
</ul>
...