Home › Forums › CSS › Using CSS to layout a website and especially the footer › Re: Using CSS to layout a website and especially the footer
February 7, 2013 at 11:18 am
#123674
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.