Your template has some unnecessary complication in the form of two extra divs inside the overall body, named .body-bg and .body-upper-bg, which do things that could just as well be done by assigning the background color to the body and the background image with padding to #mainWrapper.
Nevertheless, you can change the body-bg rule at the top of your stylesheet to a different background-color.```
body {
margin: 0;
font-family: arial, helvetica, sans-serif;
font-size: 0.72em;
color: #333333;
line-height: 17px;
}
.body-bg {
background: #262b31;
}
.body-upper-bg {
background: url("../images/body_bg.gif") repeat-y center top;
}
What does the body-up.gif look like? Does it have background color in it, or is it just the "bubbles"?