4images Forum & Community

4images Issues / Ausgaben => Discussion & Troubleshooting => Topic started by: britneyspy on February 18, 2003, 05:23:33 PM

Title: Change link colour
Post by: britneyspy 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...
Title: Change link colour
Post by: Cat 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!)