Click to See Complete Forum and Search --> : question about links


nothing
12-06-2002, 11:09 AM
Does anybody know how do I remove that line below links? Thanks.

Zach Elfers
12-06-2002, 11:11 AM
<a href="link.html" style="text-decoration:none;">Click me</a>

Sceiron
12-10-2002, 01:55 AM
Or for all links on a page...

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

Put that code somewhere near the top of your page before any links that you don't want to have underlined.