This is easily achieved using fixed positioning:
.body .mainfooter {
height: auto;
margin-top: 0;
margin-bottom: 0;
position: fixed;
bottom: 0;
}
2
solved making the footer stick the bottom
This is easily achieved using fixed positioning:
.body .mainfooter {
height: auto;
margin-top: 0;
margin-bottom: 0;
position: fixed;
bottom: 0;
}
2
solved making the footer stick the bottom