|  |
CSS
Removing Link Underlines
Have you have ever wondered how to make your links change color when the mouse rolls over them? Here's a neat trick done so easily you'll wonder why you waited so long to learn CSS.
Simply use the following code as instructed. If you are not familiar with the different methods of CSS and how or when to use them, read our article, "External, Internal or Inline? Which Method is Best?"
External style sheet method: a:hover { color:blue;}
Internal style sheet method:
Place the following code between the HEAD tags of your source code.
<STYLE type="text/css"> a:hover { color:blue; } </STYLE>
By the way, all of our web templates already come coded with link rollovers within external style sheets!
|
|  |

|