Pushing footer to the bottom - default theme
Hey guys,
I'm trying to push the vanila's default theme footer to the bottom without success. When a page is short, the footer follows #Body upwards, does not stick to the bottom.
I tried to implement everything google had to offer (cssstickyfooter.com, etc etc)
There is always something wrong
Maybe some of you already did this, and don't mind share the solution.
Image example HERE
Best Answer
-
x00 MVP
this trick uses min-height:100% and relative+negative margin positioning.
You need to make sure that the footer is outside the main content wrapper. so basically you have a block after a block. Then you use relative positioning to float it, then a negative margin of the same height of the footer (otherwise it would be bellow the bottom).
Basically there is no consensus what height:100% means.
grep is your friend.
1
Answers
this trick uses min-height:100% and relative+negative margin positioning.
You need to make sure that the footer is outside the main content wrapper. so basically you have a block after a block. Then you use relative positioning to float it, then a negative margin of the same height of the footer (otherwise it would be bellow the bottom).
Basically there is no consensus what height:100% means.
grep is your friend.
Pmsl @x00 a client used 200% and couldnt figure out why height wasnt twice 100% , took some explaining
There was an error rendering this rich post.