the #ftr is the footer, yet it appears below the page content, so if the menu is longer than the page it won't appear at the bottom. How can i get it so it will always appear at the bottom, no matter if the content or the menu is the longest?
Here is my footer on one of my pages. I can't seem to find the URL of the original hack, if I find it I'll post it, as it explains it better than I could.
Code:
/* Footer Section */
.footerDiv {
clear: both;
bottom: 0;
left: 0;
width: 100%;
background: #E9E9E9;
padding: 10px 0px 10px 0px;
font-size: 80%;
text-align: center;
}
/* MOVE .footerDiv TO BOTTOM HACK: hide from Mac IE5 */
/* \*/
.footerDiv {
position: absolute;
}
/* */
/* MOVE .footerDiv TO BOTTOM HACK: Change in Opera 5+ (and some others) */
html>body div.footerDiv {
position: static;
}
/* MOVE .footerDiv TO BOTTOM HACK: Change back in everything except Opera 5 and 6, still hiding from Mac IE5 */
/* \*/
head:first-child+body div.footerDiv {
position: absolute;
}
/* */