vote up 1 vote down star

I am creating a business application that has a variable width sidebar and content area, along with a footer. For the life of me, I can't figure out how to make the footer ALWAYS display correctly using CSS, regardless of sidebar height. Here's an illustration of the issue:

alt text

The footer and sidebar is fine if the content area is larger than the sidebar, but not the reverse (the faux columns technique doesn't seem to work with a footer, and the equal height with footer technique only seemed to work if the sidebar is shorter).

Any suggestions? I found an answer here that only worked for IE6, but nothing else just using CSS. I'm tempted to make my life easy and use TABLEs, but either way I'd love to know how to do this w/ CSS (a little javascript wouldn't hurt, but w/o is better).

flag

80% accept rate
Can you post your css? What you're attempting is very possible, but there may be something missing from your styles. – Joel Potter Jul 2 at 23:51

5 Answers

vote up 2 vote down check

One technique is to use a very large value for the columns' padding-bottom and a similarly large negative value for margin-bottom. Something like the following:

#container {
    overflow: hidden;
}

#container .column {
    padding-bottom: 20010px;  /* X + padding-bottom */
    margin-bottom: -20000px;  /* X */
}

#footer {
    position: relative;
}

The best description of the method I've seen is the in the "One True Layout" article on Position is Everything. (Don't forget to check out the potential problems article as well.)

link|flag
We posted the same link within 20 secs of eachother. Deleting and upvoting yours ;) – Matt Bridges Jul 2 at 23:59
Originally we tried this and it didn't work (if the sidebar was shorter than the content area it would show an empty space). As a work-around, I removed my sidebar's background and set the body's background to what the sidebar should be ... it's now "good enough". – LuckyLindy Jul 3 at 1:22
vote up 0 vote down

There is also another option - it is cross browser and without any hacks - check equal height columns

link|flag
vote up 1 vote down

If you have both Sidebar and MainContent floated then putting clear: both; in the rules for the footer should mean it always gets pushed down - see this two column layout tutorial on 456 Berea Street for more details. If your Sidebar is absolutely positioned then you could be having a bit more fun, here's a good resource for other layouts.

link|flag
vote up 0 vote down

This might be what you're looking for. I worked with a similar layout to yours and I used this solution, with a few modifications, to get it to obey not just the content height, but also the sidebar height.

link|flag
vote up 0 vote down

The only solution to this that i foind was using some JS to calculate the heights of the sidebar, and content areas and then making them both equal. calling the JS function onload. If you can find a better solution let me know.

link|flag

Your Answer

Get an OpenID
or

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