Use this code in an Insert > HTML Code. Try to place the code as close to the top of the page as possible:
<STYLE>
<!--
U { text-decoration : none }
--></STYLE>
If you want the links to show the underline on hover(when the cusor is over the link), use the following code insteas:
<STYLE>
<!--
U { text-decoration : none }
A:hover {color:#ffffff; text-decoration:underline; }
--></STYLE>
The onhover color is now white (#ffffff), but you can change it to what ever color you want, using either the 6 character hexadecimal value for the color, or a valid name, such as: A:hover {color:white;...
|