Pls. remove underlines from links

minckster

Registered
Could you remove the underlines from the links? Most browsers default to underlining links but give the user a choice in the matter. I don't see the need to overrule that choice with your CSS.

CSS file:
http://www.macosx.com/css/stylesheet_macosxcom.css

CSS:
a:link { color: #003366; text-decoration: underline; }
a:visited { color: #003366; text-decoration: underline; }
a:hover { color: #003366; text-decoration: underline; }
a:active { color: #000000; }
 
I just overrode the underlines. In Firefox's userContent.css, these lines work
Code:
@-moz-document domain(macosx.com) {
	div[id="container"] a { text-decoration: none !important; }
}
 
Back
Top