I have a footer that has position absolute:
#footer {
position:absolute;
bottom:0;
height: 43px;
padding:0;
background-color: #333333;
width:100%;
color:#737373;
text-align:center;
}
I’ve noticed that if I do vertical scrolling the footer stays exactly in the same place (it doesn’t scroll along).
Any suggestions to fix this?
In this fiddle, if you squish the window down so the footer should overlay the text, you’ll see it stays fixed to the bottom of the page. It uses
position: fixed;