Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Website display problems – PLEASE HELP!!! Re: Website display problems – PLEASE HELP!!!

#78333
jamygolden
Member

Add this to your CSS:

Code:
body{
background: url(Images/bg_image.jpg);
}

and change this

Code:
#page-wrap {
height: 800px;
width: 980px;
margin-left: 10px;
background-image: url(Images/bg_image.jpg);
}

To this:

Code:
#page-wrap {
height: 800px;
width: 980px;
margin: 0 auto;
}