Posts: 3,987
Name: Abel Mohler
Location: Asheville, North Carolina USA
|
Ok, for one thing, you don't need all that position: absolute. The reason it is not centering, is because you've absolutely positioned everything, but not relative to the #container. You can fix it by putting {position: relative;} inside of the #container block, which will cause everything to snap into place. I still recommend you learn to do layouts without excessive absolute positioning.
__________________
I build web things. I work for the startup Please login or register to view this content. Registration is FREE
.
Last edited by wayfarer07; 10-27-2008 at 07:39 AM..
|