Mmmmh avec un fixed bottom ça devrait le faire:
html {
position: relative;
min-height: 100%;
}
body {
margin: 0 0 100px; /* la hauteur du footer */
}
footer {
position: fixed;
bottom: 0;
height: 100px;
width: 100%;
}
Normalement tu aura un footer collant en bas de page comme ça ;)