I am trying to add a background image to my site while keeping the main central body background grey. Here is what I have done:
Added
class="MainTable" to the table definition in rectangle_top.tpl.
Added
BODY {
MARGIN-TOP: 0 px; MARGIN-BOTTOM: 0 px; MARGIN-LEFT: 0 px; MARGIN-RIGHT: 0 px;
background-image:url(http://server5.alwayswebhosting.com/~mountain/store/skin1/images/img_84.gif);
background-repeat: repeat;
}
to the skin1.css file.
And added
.MainTable {
background-color: #222222;
}
to the skin1.css file.
But all I get is the pattern all over the page. What can I do to fix this?