Floating footer doesnt display properly in ie7

At the bottom of the page, i have a floating footer that displays properly in all other browsers except ie7. If anyone can take a look and see how it could be fixed that would be great!
Can be found in the link below:

http://buzz.survivemycollege.com/viewforum.php?f=75

you can use fixed positioning to position the footer at bottom of page… (using “fixed” will make it always stay at the bottom of the pg even when user scrolls up and down…)

#footer {position:fixed; bottom:0px; }

however: pls note this will not work in IE6 (sigh…:wink:

yea sorry coding is not one of my strenghts… but that worked except in ie7 the sign in button is moved about 150 px to the right

The code is too convoluted for such a simple effect with tables unnecessarily nested. You could try forcing the issue like this.


#infobar table span{white-space:nowrap}

(I am away on holiday for two weeks in a few seconds so someone else will need to jump in if this doesn’t solve the problem)