PDA

View Full Version : Links vs Underline


rhadamanthys
11-22-03, 02:48 AM
How can I get rid of the underline part of the links?

IKLOP
11-22-03, 03:24 AM
put this inside the <head> tags:

<style type='text/css'>
<!--
a:link {text-decoration: none}
a:visited {text-decoration: none}
a:active {text-decoration: none}
a:hover {text-decoration: none;}
-->
</style>

rhadamanthys
11-22-03, 03:41 AM
How does it work though since I already have styles for links, I just want to get rid of underline.

(jj)
11-22-03, 04:57 AM
Just add

text-decoration: none

to your existing link styles