PDA

View Full Version : Pls. remove underlines from links


minckster
July 18th, 2006, 10:14 AM
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; }

minckster
July 18th, 2006, 10:27 AM
I just overrode the underlines. In Firefox's userContent.css, these lines work @-moz-document domain(macosx.com) {
div[id="container"] a { text-decoration: none !important; }
}