Is there any way to increase the point at which the bootstrap 3 navbar collapses (i.e. so that it collapses into a drop down on portrait tablets)?
These two were app
If the problem you face is the menu breaking into multiple lines, you can try one of the following:
1) Try to reduce the number of menu items or their length, like removing menu items or shortening the words.
2) Reducing the padding between the menu items, like this:
.navbar .nav > li > a {
padding: 10px 15px 10px; /* Change here the second value for padding-left and padding right */
}
Default padding is 15px both sides (left and right).
If you prefer to change each individual side use:
padding-left: 7px;
padding-right: 8px;
This setting affects the dropdown list too.
This doesn't answer the question but it could help others who don't want to mess with the CSS or using LESS variables. The two common approaches to solve this problem.