带徽标的响应式徽标定位

时间:2013-09-25 13:36:29

标签: wordpress twitter-bootstrap positioning

有没有更好的方法在导航中间定位徽标?这是使用twitter bootstrap的wordpress构建。我正在使用绝对定位,但不知道如何处理响应方面。任何输入都将非常感激。网址为:http://ndi.nowmgbeta.com/

1 个答案:

答案 0 :(得分:0)

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

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

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

然后使用以下css:

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

(因此请从.brand-nmg中移除left:规则)