Try this:
body {
background-image: url("images/bg.gif");
background-repeat: repeat-x;
background-color: #000;
padding: 0px;
margin: 0px;
font-family: Arial;
font-size: 12px;
}
#mainbox {
background-color: #fff;
margin: 0px auto;
width: 775px;
}
If you don’t want the top graphic over the entire width of the window,
Like this:
body {
background-color: #000;
padding: 0px;
margin: 0px;
font-family: Arial;
font-size: 12px;
}
#mainbox {
background-image: url("images/bg.gif");
background-repeat: repeat-x;
background-color: #fff;
margin: 0px auto;
width: 775px;
}