Home › Forums › CSS › [Solved] CSS layout help needed. › Re: [Solved] CSS layout help needed.
March 4, 2010 at 4:47 pm
#72031
Member
Having a container with a width of 100% is what is throwing it off. Specifically, because you’ve also set padding (which counts as width) and left: 100px;.
If you go width:90%; and give it a margin:0 auto; to center it, that’ll work better.
(all of this is referring to the #Container div)