1

Is there a better way to position a logo in the middle of the navigation? This is a wordpress build using the twitter bootstrap. I'm using absolute positioning but not sure what to do with the responsive aspect. Any input would be much appreciated. The url is: http://ndi.nowmgbeta.com/

4

1 回答 1

0

最简单的方法可能是将其更改<div class="brand-nmg">为:

<div class="row-fluid brand-nmg text-center">

并从其中的链接中删除 brand-nmg 类。

然后使用以下css:

.navbar {
    position: relative;
}
.brand-nmg {
    position: absolute;
}

(所以left:从 .brand-nmg 中删除规则)

于 2013-09-25T15:13:50.403 回答