On this page, the main content is nested under <div id="container">. I’ve tried to center the content using:
#container {
margin: 0 auto;
overflow: auto;
width: 960px;
}
It works fine in Firefox, but not in IE8 or IE9. Is there a way to center the content in all modern browsers?
It works if you remove the
display: tablefrom your #stickyWrap element. Is there a reason you need that? It didn’t seem to change anything else.