如何使 Drupal 7 主题的页脚粘在页面底部?
我实现了 Bartik 子主题并根据我的口味进行了修改。我不知道为什么,但页脚没有粘在页面底部(与 Bartik 不同)。
这是网站:http://www.hashbangweb.com/。
谁能解释一下如何使页脚粘在页面底部?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我经常使用 Ryan Fait 的粘页脚技术
这会涉及到你稍微修改一下你的 div 结构。您需要将 div #footer-wrapper 移动到与 #fixed 和 #skip-link 相同的水平,因此它看起来像:
您需要确保 #fixed 应用了 100% 的高度,这似乎是你目前缺少的主要东西。
希望这有帮助。
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:
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.