remove underline from link

liunx

Guest
all i really want to do is remove the underlining from my links so that i can use css to underline it on a:hover<br />
thanx<!--content-->If you can adjust the <a> attributes your half way there:<br />
<br />
a:link {color: #7F7F7F;}<br />
a:visited {color: #7F7F7F;}<br />
a:hover {color: #00FFFF;}<br />
a:active {color: #AFD7E0;}<br />
a {text-decoration: none;}<br />
<br />
Can be: none / underline / overline / blink ...jaeman<!--content-->thanks man, i feel stupid, i just forgot to put the semicolon after the :none<br />
haha<!--content-->no need to feel stupid, we all make mistakes and almost always they're simple ones.<br />
<br />
<!-- m --><a class="postlink" href="http://validator.w3.org">http://validator.w3.org</a><!-- m --><br />
<br />
will help you iron out any coding errors :)<!--content-->not with the CSS ones.<br />
<br />
whats the url to the css validator?<!--content-->HTML: <!-- m --><a class="postlink" href="http://validator.w3.org/detailed.html">http://validator.w3.org/detailed.html</a><!-- m --><br />
<br />
CSS: <!-- m --><a class="postlink" href="http://jigsaw.w3.org/css-validator/validator-uri.html">http://jigsaw.w3.org/css-validator/validator-uri.html</a><!-- m --><!--content-->
 
Back
Top