Reply To: How to stick the footer at the bottom?

Home Forums Support How to stick the footer at the bottom? Reply To: How to stick the footer at the bottom?

Home Forums Support How to stick the footer at the bottom? Reply To: How to stick the footer at the bottom?

#150941
Tekno Teddy

Using the cssstickyfooter seemed to work nicely for me. I haven’t tested it thoroughly, but so far I do not have any issues. Adjust the height “50px” accordingly.

html, body {height: 100%;}

#page {min-height: 100%;}

#content {overflow:auto;
	padding-bottom: 50px;}  /* must be same height as the footer */

.site-info {position: relative;
	margin-top: -50px; /* negative value of footer height */
	height: 50px;
	clear:both;} 

/*Opera Fix*/
body:before {
	content:"";
	height:100%;
	float:left;
	width:0;
	margin-top:-32767px;/
}

Thanks!