• 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.

when using an external style sheet...

Originally posted by: WinkOsmosis
Change the body tag.

i'm trying to do it with an external style sheet so that i only have to change one thing if i want to change the whole site. it's gonna be awesome, i just dont know how to do it...
 
you have to use the HTML 4.0 strict DTD for your pages, and just add a:

body { color: white; }

in your external CSS.
 
alright, i got that working...


here's my external style sheet now...

BODY {font-family: ariel; Font-style: bold; color: white;}
BODY {background-color: #000000}
BODY {background-image: bg.gif}


i cant figure out for the life of me why my background image isnt working...
 
you can combine all that into just one BODY {} group.
it's "background-image: URL(bg.gif);"

you need to have a semi-colon at the end of each rule, ie. "background-color: black;"

and.. GAA.. the entire website's font is bolded? how large is the font? You need to define that too ("font-size: 10pt;" etc.).
 
Back
Top