Topic: Problem with font color

http://ric.frysen.se/forum/

As you can se is the description text and som other text almost unreadable. I have changed every font color i the css but it still dont change, what have i done wrong?

2

Re: Problem with font color

This is the problem

body,td,th {
    font-family: Arial;
    font-size: 10px;
    color: #333333;
}

PunBB is picking up the font colours from your style block which overrules the stylesheets. You should move your style block to an external stylesheet. Failing that, put .pun TD, .pun TH {COLOR: #ccc) in your style block. It's also screwing up your font sizing in IE. Change the percentage font-size for IE to 100% or delete it.