Forum Moderators: not2easy
Try this:
body {
background-image: url(../images/bg.gif);
background-repeat:no-repeat;
background-position: left top;
margin:0;
}
You might consider condensing that down to:
body {
background: url(../images/bg.gif) no-repeat left top;
margin:0;
}