What I need is a very basic layout with only 2 main parts: content and footer. The footer should always be on bottom of viewport. So I have:
- Content (position:relative)
- Footer (position: fixed; bottom:0px) That works grate when I have few content (see image 1).
The problem starts when the viewport is too short or have lots of content (see image 2).
The content goes behind the footer (overlaping) and the page scroll appears.
I don't want it to go in front either. What I would like is this (see image 3)
The content doesn't overlap with the footer, and the page scroll only scroll the content div.
I don't know how to accomplish that or even if it can be done. I don't mind using jquery and I don't care for ie6. Any help would be very appreciated
Thanks
EDIT:
Thanks for the reply's.
I'm uploading a couple of images so you can better understand what I need.
In image 1 http://estudioibarra.com/test/image1.jpg you can see the design I want, and in Image 2 http://estudioibarra.com/test/image2.jpg is the same image with some explanations.
What I want is the header always on bottom of viewport because is my menu. And I don't want the content to overlap with my menu. because the content will have more than 3 projects.
What I don't want is this http://estudioibarra.com/test/image3.jpg (content appearing behind menu).
With some of your solutions I can solve that, but only if I have a scroll in the container div. I really don't like that.
Is there to use the main page scroll to scroll the container content??
Thanks again for your time