I implemented a Bartik subtheme and modified to my taste. I'm not sure why, but the footer does not stick to the bottom of the page (unlike Bartik).
Here's the site: http://www.hashbangweb.com/.
Can anyone explain what to do to make the footer stick to the bottom of开发者_开发技巧 the page?
I often use Ryan Fait's Sticky Footer technique
This would involve you slightly reworking your div structure. You would need to move the div #footer-wrapper to be on the same level as #fixed and #skip-link so it would look like:
<div id="skip-link"></div>
<div id="fixed"></div>
<div id="footer"></div>
You'll need to ensure that #fixed has 100% height applied to it, that seems to be the main thing you're missing currently.
Hope this help.
精彩评论