I have my stylesheet, and I can't find something. How do I change the font color for my news section?
The color in the news fader is set in this area. It controls the font color for the body of the forum and all td, th, and tr areas so changing it would change it in many places.
/* By default (td, body..) use verdana in black. */
body, td, th , tr
{
color: #FFFFFF;
font-size: medium;
font-family: Gisha;
}
There is a way to change the font color and link colors in the news fader.
Add this to the css at the top of it:
/* News Fader Font and link Colors */
#smfFadeScroller
{
color: #000000;
text-decoration: none;
}
#smfFadeScroller a:link
{
color: #800000;
text-decoration: underline;
}
#smfFadeScroller a:visited
{
color: #800000;
text-decoration: underline;
}
#smfFadeScroller a:hover
{
color: #000000;
text-decoration: underline;
}
The first one is for the regular font color
The second one is for the active links
The third one is for the visited links
The fourth one is for the hover color