to set the background color of the body, change this in style.css:
body {font-size: 13px; font-family: Trebuchet MS, Helvetica,"Times New Roman"; background-color:#f4f4f4!important;}
to set the background of the content to white, change here:
#content {margin-bottom:0;padding-bottom:10px; background-color:#fff; padding-left:10px;}
if you want to have white behind the sidebar and header as well, change here instead (in 960.css, at the beginning):
.container_12,.container_16{background:#fff;margin-left:auto;margin-right:auto;width:960px}
Thanks!
Now I have to figure out how to edit 960.css
I cant ftp files
I dont know how to find and edit this css:
@import url(“css/960.css
you can force the style (white background) from within style.css by adding this to the end of style.css:
.container_12,.container_16{background:#fff!important;}
the !important directly after the style, before the semicolon, forces the browser to use the style even if a different style is declared later.
Wonderful!
You saved my day