tags:

views:

64

answers:

3

Hi There,

My website has varaible content length, and this sometime means that the footer does not site at the bottom of the page, is there a way to make the footer fill whatever space is left?

http://www.ibdnetwork.co.uk/members-content/forums

A: 

Take a look at excellent post at CSS-Tricks.Com:

See the demo here :)

Sarfraz
A: 

css

#footer {
  position:fixed !important;
  bottom:0;
}

This should do it. You can add a padding on your content wrapper that have the height of your footer + 50px or something like that, for spacing between content and footer. The footer will be on top of your content else.

Holsteinkaa