View Single Post
  #2 (permalink)  
Old Apr 10th, 2007, 18:00
karinne's Avatar
karinne karinne is offline
SuperMember

SuperMember
Join Date: Jan 2007
Location: You know where
Age: 31
Posts: 4,617
Thanks: 0
Thanked 0 Times in 0 Posts
Re: links naturally becoming underlined

change the text-decoration property to none

Code: Select all
a:link, a:visited, a:active {
  color: #090;
  text-decoration: none;
}

a:hover {
  color: #900;
  text-decoration: underline;
}
Reply With Quote