我有这个网站模板,并希望在菜单没有折叠时居中。 http://themes.iki-bir.com/kyte/index.html
html代码:
div class="nav-collapse pull-right collapse"
css :
#header.navbar {
padding: 25px 0;
background: #FFF;
-webkit-box-shadow: 0 3px 0 rgba(0,0,0,0.07);
-moz-box-shadow: 0 3px 0 rgba(0,0,0,0.07);
box-shadow: 0 3px 0 rgba(0,0,0,0.07);
position: relative;
z-index: 1001;
width: 100%;
display: block;
position: fixed;
希望够了.. 很多,非常感谢!
奥伦
答案 0 :(得分:0)
要在菜单未折叠时将菜单居中,请尝试以下操作:
@media (min-width: 980px) {
#header .container{ text-align:center; }
#header.navbar-fixed-top .nav-collapse{ float:none;display:inline-block; }
}
媒体查询仅在菜单未折叠时定位菜单,此媒体查询可能已存在于样式表中,因为我看到模板正在使用引导程序。
答案 1 :(得分:0)
将其添加到样式表中:
#header.navbar-fixed-top .nav-collapse {
float: none;
width: 100%;
position: absolute;
right: 0;
top: 27px;
}
.navbar .nav {
width: 715px;
margin: 0 auto;
float: none;
}