Author Topic: Change link colour  (Read 2982 times)

0 Members and 1 Guest are viewing this topic.

Offline britneyspy

  • Newbie
  • *
  • Posts: 16
    • View Profile
    • http://www.britneyspy.com
Change link colour
« on: February 18, 2003, 05:23:33 PM »
Hey, I've looked in the style sheet and I cant find any place to change the default link colour.  Is it there?  Please reply, or am I just being blind? lol...
visit britneyspy.com ! :D

Offline Cat

  • Newbie
  • *
  • Posts: 21
    • View Profile
Change link colour
« Reply #1 on: February 18, 2003, 06:31:36 PM »
No there isn't, but you can set up those yourself if you wish to, by adding there the missing selectors:
a:link       {
  text-decoration: none;
  color: #404040;
}
a:visited    {
  text-decoration: none;
  color: #404040;
}
a:active     {
  text-decoration: none;
  color: #ffffff;
}
a:hover      {
  color: #ffffff;
  text-decoration: none;
}
 
etc..
Note however, some of the texts are already set up in the original css, so if you wish all to be the same; change them too.
Or, add individual selectors if you wish to have just certain links and use the class="blaah" method when adding it to the template html
(Wish i knew how to use this forum , and center that code!)