Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
How do you get the footer to stay at the bottom of a Web page?

I have this page and if you log in with

username: john password: tester

you will see the footer is not sticking to the bottom...any ideas on how to do this...i was thinking of using a min-height on the middle container but that doesnt work for large monitors unless i make it very high...any ideas..

here is my html

<body class="index_projects en production controller_projects">
    <div class="shell">
        <div id="header"></div>
        <div id="container" class="container"></div>
    </div>
    <div id="footer-wrap"></div>
</body>

any idea what i maybe doing wrong

share|improve this question
Your last tag should be </body> instead of </div>. – Jean-François Beauchamp Jan 11 '12 at 15:46

marked as duplicate by casperOne Jan 12 '12 at 20:03

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

4 Answers

You may want to take a look at this post Get down! How to keep footers down

share|improve this answer

Put this in your css:

#footer-wrap
{
    position: fixed;
    bottom: 0;
    height: 75px;
    z-index: 1;
    zoom: 1;
}

This is how I did it for a project of mine. As far as I remember "z-index: 1" is there so that the footer would pass over other page elements in case the browser window would be very small, and "zoom: 1" is to fix something with IE. You could also try without these styles. Adjust the height to your needs.

share|improve this answer

You can fix it with css :

#footer {
    text-align:center;
    width: 100%;
    position: fixed;//or absolute if you want it above the contents
    bottom: 0px;
}

And in your HTML page :

<div id="footer">
  <div id="footer-wrap">...</div>
</div>
share|improve this answer

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