Possible Duplicate:
CSS sticky footer
Hi,
How can I get create a footer stick to the bottom of a screen (not page) despite there is scroll bar on the side? For example like this: http://www.sportingnews.com/
Thank you.
Possible Duplicate:
CSS sticky footer
Hi,
How can I get create a footer stick to the bottom of a screen (not page) despite there is scroll bar on the side? For example like this: http://www.sportingnews.com/
Thank you.
Its called stickyfooter
http://www.cssstickyfooter.com/using-sticky-footer-code.html
There are several ways, and each has its own advantages/disadvantages (especially browser-compatibility.) Probably the easiest is fixed positioning, which doesnt work in IE6.
.bar {
bottom: 0;
position: fixed;
z-index: 2; /* May need to be tweaked, depending on your design and functionality. */
}
If you need IE6 compatibility, you can implement a JS file which enables it (and more) for IE6. Check out ie7.js