I've seen similar questions but not the one that will help me..
I'm using Bootstrap 3 (without less) I would like the menu to collapse sooner like around 999px
Here's the basic code I'm using:
<nav class="navbar navbar-inverse navbar-fixed-top" role="navigation">
<div class="container">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html">
<!-- <span class="hidden-md hidden-lg hidden-sm">German Magic Farm</span> -->
<img class="visible-xs" src="img/german-magic-farm-logo-sm.png" width="93" height="102" alt="German Magic Farm Logo" longdesc="index.html">
<img class="hidden-xs" src="img/german-magic-logo-sm-bars.png" width="110" height="133" alt="German Magic Farm Logo" longdesc="index.html"></a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav">
<li>
<a href="index.html">Home</a>
</li>
<li>
<a href="meet-pam-bauer.html">Meet Pam Bauer</a>
</li>
<li>
<a href="services.html">Services</a>
</li>
<li>
<a href="sales.html">Sales</a>
</li>
<li>
<a href="clinics.html">Clinics</a>
</li>
<li>
<a href="photo-gallery.html">Photo Gallery</a>
</li>
<li>
<a href="contact.html"> Directions & Contact</a>
</li>
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container -->
</nav>
My test site is here: Test Site
Since I have not been able to figure out a way to move the text in the 'whole nav bar' over to the right a little more on viewports of about 1000 I thought maybe changing the brake point of the collapse might be easier...
Any Ideas?