views:

34

answers:

2

My footer on my page seems to not want to get to the bottom of the content (or the bottom of the screen).

How can I fix this? https://www.algxchange.com/home

+1  A: 

See:

A Bulletproof Sticky Footer, Woohoo!

Sarfraz
A: 
* { margin:0; padding:0; }

Perhaps the body still has the default spacing?

Also, it's recommended to use a doctype so your page is rendered in standards mode, not quirks mode ( anything goes, all hell breaks loose mode ).

And I assume you are already doing if not:

html, body { height:100%; } 
#wrapper { min-height:100%; margin-bottom:-50px; } 
#footer { margin-top:-50px; height:50px; }

#wrapper needs height:100% for IE6 since it doesnt support min-height.

meder