Fixed footer at bottom of page. Code Ready to copy/paste.

The Source Code to copy/paste:

#footer {
    position:fixed;
    left:0px;
    bottom:0px;
    height:40px;
    width:100%;
    background:#999;
}
/* IExplorer 6 hack */
* html #footer {
    position:absolute;
    top:expression((0-(footer.offsetHeight)+(document.documentElement.clientHeight ? document.documentElement.clientHeight : document.body.clientHeight)+(ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop))+'px');
}

Notice: position:fixed

My official WebSite >