Quote Originally Posted by MeltDown View Post
OK, I'm at a loss. Can one of you fine folks tell me where on the stylesheet I can change the background color of the site? (The default being white)
I can change part of the background here:
Code:
 #headerWrapper {
	width:100%;
	text-align:center;
	margin:0 auto;
	background:#FFDFFF;
	}
but not the lower portion of the screen.

Thanks!!

Tim
You would put that in the body tag:
body {
background:#FFDFFF url(../images/site-bg.gif) 0 9em repeat-x;
}