• Howdy! Welcome to our community of more than 130.000 members devoted to web hosting. This is a great place to get special offers from web hosts and post your own requests or ads. To start posting sign up here. Cheers! /Peo, FreeWebSpace.net
managed wordpress hosting

non underlined link help

If you want it on ONE link, you can add a little style to it like this:

Code:
<a href="mylink.html" style="text-decoration:none;">My Link</a>

If you want it across multiple pages and multiple links, add this code to you head:

Code:
<style type="text/css">
<!--
a:link.nounder, a:visited.nounder, a:hover.nounder, a:active.nounder, a:focus.nounder { text-decoration:none; }
-->
</style>

And you add "class="nounder"" to your links, like this:

Code:
<a href="mylink.html" class="nounder">My Link</a>
 
Back
Top