removing the underline and purple color from text links

JavaScript and client side scripting.

Moderator: General Moderators

Post Reply
Mythic Fr0st
Forum Contributor
Posts: 137
Joined: Sat Dec 02, 2006 3:23 am
Contact:

removing the underline and purple color from text links

Post by Mythic Fr0st »

<a href="http://www.w3schools.com/">Visit W3Schools!</a>

It shows as purple and with an underline... how to remove this?
User avatar
Zoxive
Forum Regular
Posts: 974
Joined: Fri Apr 01, 2005 4:37 pm
Location: Bay City, Michigan

Post by Zoxive »

Some one needs some Internet 101 (How to google), and default is blue, not purple.
matthijs
DevNet Master
Posts: 3360
Joined: Thu Oct 06, 2005 3:57 pm

Post by matthijs »

Code: Select all

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