visit the live site here
Despite setting the body height:100%
, my footer continues to get stuck mid-page on certain pages such as about and contact. I have tried specifying the footer height and using position:fixed
, position:absolute
, and bottom:0
, but nothing seems to work. Any suggestions?
Update: Even attempting a "Sticky Footer" does not solve the issue; it causes the footer to be slightly off-center on the page.
body {
background: #fff;
font-family: london, Arial, sans-serif;
height: 100%;
}
#container {
width: 960px;
margin: 0 auto;
padding: 60px 0 120px 60px;
}
#footer {
position: absolute;
width: 340px;
margin: 0 auto;
bottom: 0;
height: 120px;
}