|
CSS Tricks
No Underline Links:
Here is the CSS code to get rid of the underline links once and for all. Place this CSS code between the <head> and </head> tags.
<style type="text/css">
<!--
A:link { text-decoration: none }
A:visited { text-decoration: none }
-->
</style>
|