Search this site!

Return to the CSB Support home page
Remove underlines on links

This is an often asked question: how can I remove the underlines that appear on text links?  Curtis, a fellow CSB'er provides the answer:

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;...

Example:

If you wish to purchase CuteSITE Builder, click here!