Forum Moderators: not2easy
A:links {COLOR: #3399FF;text-decoration: underline;}
A:visited { COLOR: #3399FF;text-decoration:underline;}
A:hover { COLOR: #3399FF;text-decoration: none;}
A:active { COLOR: #3399FF; text-decoration: underline;}
When a user goes to the link, and comes back. The link will not execute the A:hover command again. Why is that?
The link just stays underlined, and I want it to not underline on a hover all the time.
Thanks for any help!
a,a:visited
{
color: #3399ff;
text-decoration: underline;
}
a:hover
{
text-decoration: none;
}
Grouping will save you some bytes and remember to use LOWERCASE ;) letters in your stylesheet and HTML.
Birdman
also: no need to redefine a rule in the hover class, unless it is different from the regular link. ie. color: