My web page aligns left in IE, but not in other browsers.

Status
Not open for further replies.

php.allstar

New Member
Hi

In your style.css file change this:

HTML:
body {     
    background-color:#6699CD;
    margin:0px;     
    padding:0px;     
    border:0px;
     background-repeat:repeat;
     text-align:center;
     background-image: url(Images/BluePuffySkies.gif); }

to this:

HTML:
body {
    width: 1000px;
     background-color:#6699CD;
     margin:0px auto;
     padding:0px;
     border:0px;
     background-repeat:repeat;
     text-align:center;
     background-image: url(Images/BluePuffySkies.gif); }

Let me know how you get on
 
Status
Not open for further replies.
Top