vote up 3 vote down star

Hi Guys,

Well this is my first post here and really enjoying the site.

I have a very basic (ugly as sin) site I have started and for some reason I can not get the CSS Sticky footer to work for FireFox. IE works but FF shows it half way up the page.

The URL is http://dev.aipoker.co.uk

I know I should be developing in FF and bug fixing in IE so I am guessing I might have actually made a mistake and some how it works in IE but no where else.

Can anyone help put me out of my missery please?

Thanks guys and gals.

flag

Fx 3.0.x on WinXP looks almost the same as IE7 on this machine. Can you provide a picture or more detail about what you're trying to accomplish (link to functioning example would be nice too.) – Rob Allen Oct 1 '08 at 20:15

4 Answers

vote up 3 vote down check

Try this one, it works well on Firefox.

BTW, you should listen to Boagworld's podcast if you don't already. It's brilliant! :)

Cheers.

link|flag
vote up 3 vote down

I've had success with code like this:

footer { 
  display: block; 
  position: absolute; 
  width: 100%; 
  bottom: 0px; 
}
link|flag
vote up 1 vote down

The minimal changes I can see to do this would be:

  • move footerSection inside of body
  • set position absolute on both body and footerSection
  • set bottom = 0px on footerSection

which ends up with something like this in your head:

<style type="text/css">
  #body, #footerSection { position: absolute; }
  #footerSection { bottom: 0px; }
</style>

<div id="body">
   ...
   <div id="footerSection">
      ...
   </div>
</div>
link|flag
vote up 1 vote down

zigdon 's Solution works perfectly fine for me !! Thanks !!

link|flag

Your Answer

Get an OpenID
or

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