It looks like it is being caused by this
Code:
html,body {
overflow: auto;
}
Next you need to take the 100% width off of your wrapper since you have 10px side paddings. That causes the width to exceed 100% and gives a horizontal scrollbar.
Code:
#wrapper {
color: #fff8f0;
font-family: "Segoe UI", Segoe, "Nimbus Sans L", "Liberation Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
/*width:100%;*/
min-width:700px;
max-width:1200px;
text-align: left;
margin-left: auto;
margin-right: auto;
font-size: 16px;
padding: 0 10px;
}
The min-max widths will give haslayout to IE7 but you will need to set haslayout for IE6 now that the width:100% is removed,
Code:
* html #wrapper {height:1%;}/*IE6 haslayout*/
Bookmarks