Now you remove the pesky underline from all your links!
This is a link which is not underlined.
Copy & Paste the following code in the HEAD section of your webpage.
<style type="text/css">
<!--
A:link {text-decoration: none}
-->
</style> |
If you have disabled the underline, you can give the visitor a hint that a given text is a link, by adding an underline on mouse over.
This link will be underlined on mouse over.
Copy & Paste the following code in the HEAD section of your webpage.
<style type="text/css">
<!--
A:hover {text-decoration: underline}
-->
</style> |