I am working on a site using Bootstrap 3.1.0.
You\'ll notice when the modal window opens, the browser scroll bar just disappears for a split second, then comes back.
My Jquery solution:
var nb = $('nav.navbar-fixed-top'); $('.modal') .on('show.bs.modal', function () { nb.width(nb.width()); }) .on('hidden.bs.modal', function () { nb.width(nb.width('auto')); });