PDA

View Full Version : Hyperlinks



dpotter101
September 19th, 2002, 04:25 AM
Does anyone know if there is a way where you can remove the undeerlining when you create hyperlinks?

lostinbeta
September 19th, 2002, 12:46 PM
If you want to do it by editing the HTML directly you can do this...

In between the tags (replace [] with <>) insert this......


<STYLE TYPE="text/css">
<!--
a:link {text-decoration: none; }
a:visited {text-decoration: none; }
a:active {text-decoration: none; }
a:hover {text-decoration: none; }
a {text-decoration: none;}
-->
</STYLE>

kirupa
September 19th, 2002, 05:51 PM
Hello dpotter101,
I also found that simply selecting the hyperlink and pressing the underline button from the Formatting toolbar removes the underline as well :P

Cheers!
Kirupa

lostinbeta
September 19th, 2002, 11:35 PM
Or that:P