如何添加通知栏等主题?
我想在我的网站上添加一个固定通知栏(例如黄色的此处):http://balloonup.com。 我尝试将以下内容放在正文之后:
<div id="notification-wrapper"
style="border-bottom: 1px solid #C69A00;
background-color: #FEF28F;top:0;
position: fixed;z-index: 99999;width: 100%;">
<em>Hello world!</em>
</div>
不幸的是,这个黄色条与我的标题重叠。
有什么想法吗?
I would like to add a fixed notification bar (like the yellow one here) on my website: http://balloonup.com.
I tried to put the followings just after the body:
<div id="notification-wrapper"
style="border-bottom: 1px solid #C69A00;
background-color: #FEF28F;top:0;
position: fixed;z-index: 99999;width: 100%;">
<em>Hello world!</em>
</div>
Unfortunately, this yellow bar overlaps my header.
Any idea?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 woothemes 示例中,他们只是通过
margin-top
按下了第一个内容框 (#top),其中“通知栏”的高度就像 @rockinthesixstring 所写的那样。In woothemes example they've just pushed down the first content box (#top) through
margin-top
with the height of the "notification bar" just like @rockinthesixstring wrote.