Page 1 of 1

removing the underline and purple color from text links

Posted: Thu Dec 07, 2006 12:53 am
by Mythic Fr0st
<a href="http://www.w3schools.com/">Visit W3Schools!</a>

It shows as purple and with an underline... how to remove this?

Posted: Thu Dec 07, 2006 2:53 am
by Zoxive
Some one needs some Internet 101 (How to google), and default is blue, not purple.

Posted: Thu Dec 07, 2006 3:36 am
by matthijs

Code: Select all

css:
a:link { 
  color: #358;
  text-decoration:none;
}