Responsive Logo Positioning with Logo

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/

Related posts

Leave a Reply

1 comment

  1. The easiest way probably is to change the <div class="brand-nmg"> to:

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

    and remove the brand-nmg class from the link inside it.

    Then use the following css:

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

    (so remove the left: rule from .brand-nmg)