Forum Moderators: not2easy
I could use a hand with this...I'm having trouble with unwanted hover tags showing up in image rollovers in Netscape 7. I realize that there are issues related to CSS2 that this is related to; nonetheless, I don't seem to be able to get around this with the information I've found.
Problem is with the "art" toolbar near the top of the page.
css this would be applying to in terms of the href is:
A:visited {
COLOR: #3366cc; text-decoration: none;
}
A:link {
COLOR: #3366cc; text-decoration: none;
}
A:visited:hover {
BORDER-BOTTOM: 1px dotted #3366cc;
color: 3366cc;
}
A:link:hover {
BORDER-BOTTOM: 1px dotted #3366cc;
color: 3366cc;
}
Again, I have the feeling that this is a simple thing that I'm not seeing. I would very much appreciate any suggestions.
Thanks
Bob H
[edited by: Marcia at 9:13 pm (utc) on July 28, 2003]
[edit reason] Specific example not necessary. [/edit]
You seem to be adding extra bits to your pseudo classes. The correct order and naming of link pseudo classes is:
a:link {...}
a:visited {...}
a:hover {...}
a:active {...}
Also, you should avoid using all capitals, BORDER-BOTTOM should be written as border-bottom.
HTH