Hi Tom,
Sorry, this issue was my fault.
I put this code to the style.css, to stay the footer in the bottom of the page:
html, body {height: 100%;}
#wrap {min-height: 100%;}
#main {overflow:auto;
padding-bottom: 180px;} /* must be same height as the footer */
#footer {position: relative;
margin-top: -180px; /* negative value of footer height */
height: 180px;
clear:both;}
/*Opera Fix*/
body:before {/* thanks to Maleika (Kohoutec)*/
content:””;
height:100%;
float:left;
width:0;
margin-top:-32767px;/* thank you Erik J – negate effect of float*/
}
This code put that gap to the page.
Have you any idea to stay the footer in the bottom of the page?
Thanks,
Istvan