I know this would be easy with position:fixed, but unfortanately I\'m stuck with supporting IE 6. How can I do this? I would rather use CSS to be clean, but if I have to u
I have done this using CSS expressions in the Past.
Try something like this:
.footer { position: absolute; top: expression((document.body.clientHeight - myFooterheight) + "px"); }
read more here and here