Forums

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

Home Forums CSS Help! Position Footer to bottom of page? Re: Help! Position Footer to bottom of page?

#59354
apostrophe
Participant

I just had a go with the Ryan Fait method in firebug and it worked without any problems.
So in your markup add an empty div with a class (or id) of push just before the closing div of the main container.

Code:

Then add these rules to the css

Code:
html, body {
height:100%;
}
.container_12 {
background-color:transparent;
height:auto !important;
margin:0 auto -120px;
min-height:100%;
width:960px;
}
.push {
height:120px;
}