Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS [Solved] CSS layout help needed. Re: [Solved] CSS layout help needed.

#72031
TheDoc
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)