• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Why isn't this damned CSS working?

Ended up being tables fscking with things. He put a new CSS tag that applied to <td> and it worked fine.
 
Easy... <TABLE> doesn't inherit from <BODY> 🙂

Add the following code to your style sheet:

TABLE {
font-size : 9px;
font-family : Arial;
color : #333333;
background : #ffffff url() fixed repeat;
}

And that'll fix your problem!
 
Originally posted by: MSantiago
Easy... <TABLE> doesn't inherit from <BODY> 🙂

Add the following code to your style sheet:

TABLE {
font-size : 9px;
font-family : Arial;
color : #333333;
background : #ffffff url() fixed repeat;
}

And that'll fix your problem!
Thanks, already figured it out though! That was exactly it, too. 😀

Rob
 
Back
Top