Forum Moderators: not2easy
#wrapper {
border: 2px solid #003300; /* extra-picky but it is possible to use the shorthand #030 */
background-attachment: fixed; /* only applies if there is a background-image so could be removed */
display: block; /* if #wrapper is a block element - like a div - it is display:block by default, so could be removed */
width: 900px;
/*min-width: 900px;
max-width: 900px; min- and max-width not required as you have declared a width */
height: 1225px;
/*min-height: 1225px;
max-height: 1225px; as for width - min- and max- not required */
visibility: visible; /* visibility is visible by default, so should not be required */
clear: both; /* whether this is required will depend on how the page is coded, but I suspect this isn't required either */
background-color: white;
/* margin-right: 10%;
margin-left: 10%; these are causing the issue you posted about - replace with margin:0 auto as suggested by previous posters */
}
body {Hi foti, I know I'm pedantic on this, but it is a pet peeve - only required for ie5.5 and below, and ie6 in quirks mode.
text-align: center; /* For IE */
}