Trying to center floating lists

liunx

Guest
Seeing as I'm having one heck of time attempting to fill the area with my floating lists, 3 of them. I'm trying to center them, and I think it'll probably look better....

Anyway, does anyone have any idea how I can either fill the void, or center them to look pretty?

<!-- m --><a class="postlink" href="http://test.eyecravedvd.com/test.html">http://test.eyecravedvd.com/test.html</a><!-- m -->

All the code is in that file.

ThanksReplace this:



#latest_headers {
height: auto;
background: #F6F6F6;
width: 100%;
padding: 0 0 5px 0;
margin: 0;
vertical-align: top;
float: left;
text-align: center;
border-bottom: solid 1px #000;
}

With this:



#latest_headers {
height: auto;
background: #F6F6F6;
padding: 0 0 5px 0;
margin: 0 12px;
vertical-align: top;
float: left;
text-align: center;
border-bottom: solid 1px #000;
}

That should do it.I looks wonderfull in Mozilla, but crudy in IE 6. I guess I'll have to hack that one, but which hack. It's been a while.

Thanks again.
 
Back
Top