Forum Moderators: not2easy
Here is a link in the 'sidebar' frame:
<a href="about_us.htm" target="content">
About Us
</a>
It loads the 'about_us' page in the main content frame very nicely...
However, in Netscape 7.1, I notice that after I click the link, the only way to get the browser to recognize that the link has been visited is to reload the 'sidebar' frame (or the entire site). Is there a method to overcome this problem (and still use frames)?
Also, in MSIE 6, I see that the a:link:hover color does not work. Instead, the links always turn the a:visited:hover color when hovered upon. hmmmmm
<sputter>#@!~^*</sputter>
Any ideas are most welcome!
I'm not sure you can use css that's
a:first:second
I've just seen your first a:link:hover as just a:hover. That might be the same with the visited:hover thing. About the frames thing, I'm not sure.
Change the a:link:hover and ditch the a:visited:hover and see what happens...
BTW, I've never thought of a visited:hover state, I've only known normal, hover, mousedown, and visited, the visited:hover is interesting too.
Here's the code I use based on a website showing the best way to code links to work for all browsers:
:link, :visited {text-decoration:underline;}
:link:focus, :visited:focus {color:#77c;}
:link {color:#33c;}
:visited {color:#900;}
:visited:hover {color:#d04;}
:link:hover {color:#77c;}
:link:active, :visited:active {color:#900;}