I have a page. Vertically, it has two parts. The top is a navbar. The lower section is the content of the page.
The lower section has the bootstrap "container" class. Within the container, the left-side is a navigation area. The right-side is the content, which has another navbar. Here is what I have for the navbar.
<div class="navbar navbar-default" role="navigation">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<div class="navbar-collapse collapse" id="control-panel">
<ul class="nav navbar-nav">
<li class="dropdown">
<a href="#" >Menu 1</a>
</li>
<li class="dropdown">
<a href="#" >Menu 2</a>
</li>
<li class="dropdown">
<a href="#" >Menu 3</a>
</li>
</ul>
</div><!--/.nav-collapse -->
</div> <!-- end of navbar -->
Note that I removed the immediate "container" child of "navbar" found in normal navbar examples, as in this link: http://getbootstrap.com/examples/navbar/. With this container, the navbar does not work well with dropdowns.
So far the navbar works, but I would like to increase its breakpoint for collapse. I found a few related posts at SO such as
but still have no idea about how to make it work in my case. I have this within-page navbar only on this page, not site-wide.