Not sure what you put in the background, but this is what you have:
Code:
#contentMainWrapper {
/*background-color:#F3F1F1; */
padding-bottom: 20px;
border-left:1px solid #663300;
border-right:1px solid #663300;
background-image:url(../images/Bgmain.gif) scroll repeat-x left bottom;
It needs to be like this:
Code:
#contentMainWrapper {
padding-bottom: 20px;
border-left:1px solid #663300;
border-right:1px solid #663300;
background:#F3F1F1 url(../images/Bgmain.gif) scroll repeat-x left bottom;
}
When using the combined "shorthand" background property, you need to use background: and not background-image:
Bookmarks