Forums

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

Home Forums CSS IE9 Background Width Re: IE9 Background Width

#116351
Watson90
Member

Okay, @robertallen

Upon inspection using the IE9 Developer tools, you have placed your website in a div with an ID of **wrapper** which has a width of 1200px. And you have also attempted to style it twice in your stylesheet.

Your CSS for both of them is this;

#wrapper
{
width: 1200px;
overflow: auto;
border-top-color: currentColor;
border-right-color: currentColor;
border-bottom-color: currentColor;
border-left-color: currentColor;
border-top-width: 1px;
border-right-width: 1px;
border-bottom-width: 1px;
border-left-width: 1px;
border-top-style: solid;
border-right-style: solid;
border-bottom-style: solid;
border-left-style: solid;
}

#wrapper
{
height: auto !important;
margin-top: 0px;
margin-right: auto;
margin-bottom: -25px;
margin-left: auto;
min-height: 100%;
}