-
Visited Links and IE
Hi,
I am trying to get rid of the purple visited link border around images. I have in Firefox and Safari, but they keep showing up in IE.
The page is as:
http://new.mammacare.com/dev3/products.php?p_id=13
The CSS is at:
http://new.mammacare.com/dev3/base2.css
Briefly, the CSS is:
#product_viewer_thumbnails a {
text-decoration: none;
color: #FFFFFF;
background: #FFFFFF;
font-weight: normal;
}
-
Anchor Pseudo-classes
Try the Anchor Pseudo-classes:
a:link {color: #FF0000} /* unvisited link */
a:visited {color: #00FF00} /* visited link */
a:hover {color: #FF00FF} /* mouse over link */
a:active {color: #0000FF} /* selected link */