Hi,
I'm creating a site and have noticed that in my navigation links, the hover function no longer works once that page's code has been written and saved. Has anybody come across this problem before?
Thanks
| SitePoint Sponsor |
Hi,
I'm creating a site and have noticed that in my navigation links, the hover function no longer works once that page's code has been written and saved. Has anybody come across this problem before?
Thanks





Could you post some code for us to look at?
Ok, this is what I believe to be the relavent code:
CSS Code
#header a:link, #header a:visited {
text-decoration: none;
font-weight: bold;
background-color: #000000;
color: #ff0000;
}
#header a:hover {
text-decoration: none;
font-weight: bold;
background-color: #000000;
color: #ddca5e;
}
HTML Code
<ul>
<li><a href="news.html">NEWS</a> | </li>
<li><a href="tourdates.html">TOUR DATES</a> | </li>
<li><a href="gallery.html">GALLERY</a> | </li>
<li><a href="history.html">HISTORY</a> | </li>
<li><a href="interviews.html">INTERVIEWS/REVIEWS</a> | </li>
<li><a href="merchandise.html">MERCHANDISE</a> | </li>
<li><a href="music.html">MUSIC</a> | </li>
<li><a href="video.html">VIDEO</a> | </li>
<li><a href="contact.html">CONTACT</a></li>
</ul>





Hi,
I cant see any reason it would be doing that
Could you try putting this in instead of what you have:
Code:#header a:link, a:visited
Changing to that code does not solver the problem. Thanks for your input. I'll continue to troubleshoot this.
Bookmarks