I am using the following navbar:
And I'm having this problem:
You can see that by the amount of elements that the navbar has, when I reduce the resolution of the screen, the elements that are aligned to the right, are passed down.
I need to avoid that, making the appearance of this:
occurs before the problem described.
The code:
<nav class="navbar navbar-inverse">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
<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="#">Las Holass</a>
</div>
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav">
<li class="active"><a href="#">Hooola Holaaa!</a></li>
<li><a href="#">holahola</a></li>
<li><a href="#">Hooola hola!</a></li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li class="dropdown">
<a href="#" class="dropdown-hover" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Holita
<i class="glyphicon glyphicon-user white"></i>
</a>
<ul class="dropdown-menu">
<li><a id="login" href="#">Cerrar Sesión</a></li>
</ul>
</li>
<li><a href="#">Hooola Holas</a></li>
<li><a href="#">hoola holaaa</a></li>
</ul>
</div><!-- fin navbar-collapse -->
</div><!-- fin container-fluid -->
</nav>
Is there any way to define the minimum width in pixels from which will appear the button of the three white bars that compresses the contents of the navbar?
EDIT
What I need is to establish the maximum width * from which the button indicated above will appear, not the minimum as I described wrongly.
For example, if that button currently appears between 0px and 765px wide, I need it to appear between 0px and 769px wide.