Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Please take a look here http://sources.freehosting.bg/1st-level.html

The footer overlaps the above content when the page gets "minimized" in the window. I have tried to resolve this for hours but with no luck.

Maximized: http://store.picbg.net/pubpic/99/2A/db640a6f9063992a.PNG Minimized: http://store.picbg.net/pubpic/E4/96/2c1e86018b7be496.PNG

The floats are cleared, I have no idea what might be causing this. Please help me solve it...

share|improve this question

2 Answers

up vote 1 down vote accepted

Your setHeights is causing the problem, it is setting the heights' of #content and main .main smaller than their content so it overflows, if you take out the -20 it seems to work, but why set the heights any way as it would expand with its content.

function setHeights() {
    var newHeight=$(document).height() - 290;
    $('#content').height(newHeight);
    $('.main').height(newHeight/*-20*/);
}
share|improve this answer
It seems that was causing it. Thank you very much! – barakuda28 Aug 2 '12 at 23:46

You need to remove the margin-top: -30px from #footer in your CSS.

share|improve this answer
I just removed it. The issue persists. It overlaps with more than 30px. – barakuda28 Aug 2 '12 at 23:22
Are you sure you removed it and re-uploaded your CSS? I'm using Chrome and removing the margin-top solves the problem. – amiregelz Aug 2 '12 at 23:28
Yes, I am sure. Clear your cache and you will see. Here is how I see it now: store.picbg.net/pubpic/6B/40/97b62cca98916b40.PNG – barakuda28 Aug 2 '12 at 23:39

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.