I have a bootstrap-navbar
which is wrapping onto two lines below a certain width, is there any way to stop it doing this without hacking around in the bootstrap LESS file?
<nav class="navbar navbar-default">
<div class="container-fluid">
<div class="navbar-header"> <span class="navbar-brand">Brand</span></div>
<ul class="nav navbar-nav navbar-right">
<li>
<a id="btn-dashboard" class="navbar-link">Items
<span class="badge">1</span></a>
</li>
</ul>
</div>
</nav>
Example at: http://jsfiddle.net/u10Lvgk8/2/
If you reduce the page width on the project above, you'll see the menu wraps onto two lines, even though the elements are very small! Am I doing something wrong, or is this just a bootstrap limitation?