
Locate
div#pagewrapper {
border: 1px solid black;
margin: 0 auto; /* this centers wrapper */
max-width: 80em; /* IE wont understand these, so we will use javascript magick */
min-width: 60em;
background: #color url(http://tinaturner.us.to/Untitled-1.gif) no-repeat center; /* edit this for your bg color and image */
color: black;
}
on your stylesheets and remove #color so it comes:
div#pagewrapper {
border: 1px solid black;
margin: 0 auto; /* this centers wrapper */
max-width: 80em; /* IE wont understand these, so we will use javascript magick */
min-width: 60em;
background: url(http://tinaturner.us.to/Untitled-1.gif) no-repeat center; /* edit this for your bg color and image */
color: black;
}
The problem was wrong syntax in you style so browsers ignored that line. With #color Nullig ment that you replace #color with actual color code like #ffffff or something like that.
br, K