Looks like you'll need to add some more CSS definitions - it may take a bit of tinkering to get it right.
Edit these sections of teh CSS:
Code:
.windowbg
{
background-color: #FFFFCC;
color: #000000;
size:1;
}
.newwindowbg
{
background-color: #99FF66;
color: #000000;
size:1;
}
.windowbg2, .thread
{
background-color: #99CCCC;
color: #000000;
size:1;
}
and change to
Code:
.windowbg, .windowbg a, .windowbg a:link, .windowbg a:visited
{
background-color: #FFFFCC;
color: #000000;
size:1;
}
.newwindowbg, .newwindowbg a, .newwindowbg a:link, .newwindowbg a:visited
{
background-color: #99FF66;
color: #000000;
size:1;
}
.windowbg2, .thread, .windowbg2 a, .windowbg2 a:link, .windowbg2 a:visited
{
background-color: #99CCCC;
color: #000000;
size:1;
}
and then change the
color to what you want and that may be enough.
Sorry it's so messy. It started off simple and got added onto many times when really I should have started again. One day (yeah right) I'll have time to tidy it all up!
If you view this style on a PC - you can view the source and look for the class definitions and see which bits of the CSS file you need to clean up.
Keep the questions coming if you have more, it will help others too!