Forums

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

Home Forums CSS Can't get footer to stick to bottom of page Reply To: Can't get footer to stick to bottom of page

#183177
jparkerweb
Participant

To get it to truly “stick” to the bottom of the page you will need to set its position to fixed. try something like this:


#footer {
position: fixed;
bottom: 0;
width: 100%;
background: #FFF;
}