I did up a new layout for a friend and used a CSS style sheet for the links and scrollbar colors (to make it easy on her or me...whoever makes any changes LOL). It all looks great in IE, however in Netscape (I have v6.2), K-Meleon and Mozilla the A:link code is set to white, but in those browsers, it shows up the default blue, which clashes horribly with the background color used on the site.
The code within the STYLE tags is: A:link
{ text-decoration: none; color:#FFFFFF}
A:visited
{ text-decoration: none; color:#B4B4B4}
A:active
{ text-decoration: none; color:#B4B4B4}
A:hover
{ FONT-WEIGHT: bold; text-decoration: none; color:#BBD5FB; }
The bit in bold is what's giving me fits. I even tried using the word "white" and still no change.
Looks fine. It must be something else in your CSS, but the link you posted gives me a 404.
Also, here's a few things to keep in mind:
1. The order is wrong. You should specify it in this order:
a:link, a:visited, a:hover, a:active
2. Changing the font's weight (to bold) on hover will often have very negative side effects, such as the text on the page moving around when someone hovers over a link. Not good.
Bookmarks