如何使 Drupal 7 主题的页脚粘在页面底部?

发布于 2024-12-03 18:41:32 字数 194 浏览 2 评论 0原文

我实现了 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

请持续率性 2024-12-10 18:41:32

我经常使用 Ryan Fait 的粘页脚技术

这会涉及到你稍微修改一下你的 div 结构。您需要将 div #footer-wrapper 移动到与 #fixed 和 #skip-link 相同的水平,因此它看起来像:

<div id="skip-link"></div>
<div id="fixed"></div>
<div id="footer"></div>

您需要确保 #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:

<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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文