View Single Post
06-15-2008, 02:11 AM
#7
insub2 is offline insub2
Status: Member
Join date: Jun 2007
Location:
Expertise:
Software:
 
Posts: 136
iTrader: 1 / 100%
 

insub2 is on a distinguished road

Send a message via AIM to insub2

  Old

Originally Posted by MishieMoo View Post
If you put position:relative; in the css of the wrapper, all the positioning should stay the same relative to each other. Absolute positions aren't completely absolute when they're contained in a relatively positioned wrapper, so doing this should help =)
this guy is absolutely correct. (...sorry)

add something like <div id="wrapper"> ... </div> to your HTML and #wrapper {width: *your width*; margin:0 auto; position:relative;}
that should have your page centered without having to redo your absolute positioned layout.