I was able to figure this out before, and I remember doing essentially this, but for some reason it doesn't work now. I have a middle column for a website that needs to be centered (like so), but the normal margin:0 auto; doesn't work, yielding instead this (the CSS formatting for the link items for the navbar also doesn't work, but that is a different problem entirely). My CSS for the main column and the parent is:
body {
margin:0;
padding:0;
height:100%;
background:url(images/BGTop.png) repeat-x;
}
div#main {
margin:0 auto;
padding:0 1px;
size:auto 730px;
background:url(images/mainbg.png) repeat-y;
}
You'll notice that the BG doesn't work, either. Is this the same problem? Why isn't any of the CSS working (except, I presume, the padding on #main)? The HTML doesn't appear to be the problem:
<body>
<div id="main">
<ul class="navbar">
<li class="navbar"><a class="navbar" href="#">home</a></li>
<li class="navbar"><a class="navbar" href="#">bingo</a></li>
...
<li class="navbar"><a class="navbar" href="#">music</a></li>
</ul>
</div>
</body>