Forums

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

Home Forums CSS Using CSS to layout a website and especially the footer Re: Using CSS to layout a website and especially the footer

#123674
Paulie_D
Member

The issue is that most of the elements inside the wrapper are floated or positioned absolutely, which takes them out of the document flow &/or causes the wrapper to collapse.

The answer to most of this issue is to take the footer OUT of the wrapper, give it the properties

clear: both;
width:990px /* or whatever */
margin:0 auto;

A more involved solution would be to restructure/recode the whole thing as clearly adding content is causing some major issues.