i want to make an sticky footer I tried many css solutions and javascript solutions, it works but i have a big background image, and footer goes to end of it background size
and i need footer go to end of page
example:
css background img = 2700px per 1900px page content size = height: 500px
so instead footer stick at 550px (content + margin + footer height), it will stick at 1850px (Background img)
screenshot: http://screencast.com/t/Gp7EkxKA3 NOTE: Content is set to 100% just to see what is happening
my script:
<script type="text/javascript">
function getWindowHeight() {
var windowHeight=0;
if (typeof(window.innerHeight)=='number') {
windowHeight=window.innerHeight;
}
else {
if (document.documentElement&&
document.documentElement.clientHeight) {
windowHeight=
document.documentElement.clientHeight;
}
else {
if (document.body&&document.body.clientHeight) {
windowHeight=document.body.clientHeight;
}
}
}
return windowHeight;
}
function setFooter() {
if (document.getElementById) {
var windowHeight=getWindowHeight();
if (windowHeight>0) {
var contentHeight=document.getElementById('content').offsetHeight;
var footerElement=document.getElementById('footercustom');
var footerHeight=footerElement.offsetHeight;
if (windowHeight-(contentHeight+footerHeight)>=0) {
footerElement.style.position='relative';
footerElement.style.top=(windowHeight-
(contentHeight+footerHeight))+'px';
}
else {
footerElement.style.position='static';
}
}
}
}
window.onload = function() {
setFooter();
}
window.onresize = function() {
setFooter();
}
<script>
how can i fix this situation?
thanks