Printed from BasicTips.com, FREE helpful articles and tips for Webmasters and Business Owners
Copyright © 1994-2006 by BasicTips.com, a division of BasicTemplates.BIZ
All rights reserved. Republication in whole or in part in any form is not permitted.

Sponsored by BasicTemplates.BIZ
Website Templates with External CSS and Removable Graphics
http://www.BasicTemplates.biz

Co-Sponsored by Effective-Website-Secrets.com
Teaching webmasters effective web development and marketing techniques via free podcasts.
http://www.Effective-Website-Secrets.com

Category: CSS
Removing Link Underlines
By BasicTemplates with External CSS

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!