Here is my jsFiddle with full code example.
I am trying to implement a sticky footer. As you can see my sign in form is pretty short. Nevertheless the footer should be pinned all the way down to the bottom of the page. I tried:
.footer {
position: relative;
width: 700px;
margin: 0 auto;
background: url(images/footer.jpg) no-repeat;
}
But this is not working. Any idea what exact JS/CSS I can add to fix my stickiness?