se7en adlı üyeden alıntı: mesajı görüntüle
Bunu iki yolla yapabilirsiniz;

1) CSS ile sticky footer
.wrapper {
	min-height: 100%;
	height: auto !important;
	height: 100%;
	margin: 0 auto -142px; /* buradaki negatif değer de footer yüksekliğinde olmalı */
}
.footer, .push {
	height: 142px; /* .push, .footer ile aynı yüksekliğe sahip olmalı */
}

2. jQuery ile sticky footer

*Footer yüksekliği olmalıdır kesinlikle.

<div id="footer">footer</div>

// Window load event used just in case window height is dependant upon images
$(window).bind("load", function() { 

       var footerHeight = 0,
           footerTop = 0,
           $footer = $("#footer");

       positionFooter();

       function positionFooter() {

                footerHeight = $footer.height();
                footerTop = ($(window).scrollTop()+$(window).height()-footerHeight)+"px";

               if ( ($(document.body).height()+footerHeight) < $(window).height()) {
                   $footer.css({
                        position: "absolute"
                   })
               } else {
                   $footer.css({
                        position: "static"
                   })
               }

       }

       $(window)
               .scroll(positionFooter)
               .resize(positionFooter)

});
bunu nasıl kullanacağım konusunda bir bilgim yok.

edit: nasıl kullanılacağını buldum ama bunda footer sürekli en aşağıda olmuyor. sayfa boyutunu kendimiz ayarlamamız gerekiyor