Click to See Complete Forum and Search --> : Home Link


shixter
10-29-2003, 10:15 PM
What script should I use to remove the underlines from my links?

fredmv
10-30-2003, 12:39 AM
<style type="text/css">
a {
text-decoration: none;
}
</style>

shixter
10-30-2003, 12:58 AM
Cool. Thank you so much. You wouldn't believe how hard it is to find small things like that listed anywhere.

fredmv
10-30-2003, 01:09 AM
No problem! For future reference, check out the W3 Schools CSS Reference (http://www.w3schools.com/css/css_reference.asp). You may find it helpful. ;)