View Full Version : linking?


childempress
05-18-2003, 03:20 AM
Okay this question may seem really stupid, but how do you get rid of the underline on a link without having to add a whole css? is there something i can add to just the "<a href=" part of the link to make the underline go away? I can't seem to find this in lissa's site...
Thanks for your help!! :D

Cherchezlafemme
05-18-2003, 03:36 AM
nope you have to use CSS but you can use a small portion of it

pb&j
05-18-2003, 04:38 AM
it doesn't take much css.

to get rid of all the underlines, just add this to the HEAD area of your page coding...

<style type="text/css">
a {text-decoration:none;}
</style>

and it takes care of the rest.
to get rid of the underline of one specific link, add this tho the HEAD area of your page coding...

<style type="text/css">
a.foo {text-decoration:none;}
</style>

then you just add the CLASS property to your link tag like so...

<a href="pagehere.html" class="foo"> text stuff </a>