如何浮动顶部栏?
我想找到一个 drupal 主题,它有一个类似于 Twitter 顶部栏的栏,位于 http://dev.twitter.com就留在那里。如果没有,我如何在 Drupal 7 中复制类似的效果?
I want to find a drupal theme that has a bar like Twitter's top bar at http://dev.twitter.com that stays there. If there is not one, how do I replicate that similar effect in a Drupal 7?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
虽然我不知道任何 Drupal 主题,但我知道如何重新创建效果 - 将元素固定到视口顶部,使用 CSS 的
position:fixed
:您可能还想要在其余内容上添加上边距,这样就不会覆盖它。
While I don't know of any Drupal themes, I know how to recreate the effect -- to pin an element to the top of the viewport, use CSS's
position: fixed
:You'll also probably want to put a top margin on the rest of your content, so that it doesn't cover it up.
您还可以查看 Twitter 优秀的 Bootstrap 项目作为示例。有关详细信息,请参阅此处。他们称之为顶栏。如果您想推出自己的主题,您也可以使用 Bootstrap 作为 Drupal 自定义主题的起点。
You can also check out Twitter's excellent Bootstrap project for examples. See here for the details. They call it a top bar. Also you could use Bootstrap as a starting point for a Drupal custom theme if you want to roll your own.