.navbar-static-top doesn't span 100% of viewport width
Created by: raulmatei
The navbar-static-top has a gap of 40px to the right side on screens smaller than 768px. For the moment I've solved the problem with: @media (max-width: 767px) { .navbar-static-top .navbar-inner { margin-right: -40px; } } Test on Boostrap live examples (edited with Firebug, Developer Tools) : http://i1009.photobucket.com/albums/af220/raulmatei/navbar-static-top-bug.png
I'm not sure it is the right solution but it works for me.
Raul.