How to stick a footer to bottom in css?
#Footer {
position:fixed;
bottom:0;
}
That will make the footer stay at the bottom of the browser window no matter where you scroll.
#Footer {
position:fixed;
bottom:0;
width:100%;
}
worked for me
Try setting the styles of your footer to position:absolute;
and bottom:0;
.