It looks like there is a padding-left assigned to "article" check out line 
88 on your style.css.

I'm not saying you should remove it, but you may want to wrap the <nav ... 
> in a new div and add the same padding-left to the new div. This way 
you'll have the same in the article (which holds your img and content) and 
in the <nav ...>

so you would want it to look something like:

HTML

<div class="nav-padding">
    <nav class="navbar navbarborder col-md-12 col-md-offset-2 col-xs-15" 
role="navigation">
        ........
    </nav>
</div>



CSS: (add it to the style.css)

div.nav-padding {padding-left: 20px;}


hope this is getting you closer :)

-- 
You received this message because you are subscribed to the Google Groups 
"twitter-bootstrap" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to