【发布时间】:2014-12-11 12:45:43
【问题描述】:
我一直在玩 Weebly 的不同模板,并试图找到一个可以在顶部添加社交链接的固定导航栏,但我似乎无法使用任何模板。社交联系往往不合适。
我已决定使用当前模板,但需要修复当前标题部分。我曾尝试将position: fixed 添加到 CSS 的一些区域,但结果很糟糕。滚动可以看到背景。
【问题讨论】:
标签: html css templates navigation weebly
我一直在玩 Weebly 的不同模板,并试图找到一个可以在顶部添加社交链接的固定导航栏,但我似乎无法使用任何模板。社交联系往往不合适。
我已决定使用当前模板,但需要修复当前标题部分。我曾尝试将position: fixed 添加到 CSS 的一些区域,但结果很糟糕。滚动可以看到背景。
【问题讨论】:
标签: html css templates navigation weebly
将此应用于#header-wrap
position: fixed;
top: 0;
z-index: 1;
background: #FFF; //if you want a background on the fixed header.
你现在在#page-wrap 上有了边框,所以如果你想保留它,给这个div 一个margin-top。 如果您想要固定标题上的边框,请将其放在那里。
为您设计导航:
#nav-wrap {
position: fixed;
top: 47px;
z-index: 2;
}
#nav-wrap .container {
clear: both;
overflow: hidden;
position: relative;
padding-bottom: 10px;
margin-bottom: 10px;
background: url(theme/saperator.png?1418308200) no-repeat bottom left;
z-index: 2;
background: #FFF;
}
【讨论】: