I am trying to do a site using twitter bootstrap. I am having relatively less menus, so it kind of fits within the 768px display also. But in bootstrap by default, the menu
find variable:
@grid-float-breakpoint
which is set to @screen-sm, you can change it according to your needs.
If you override the vendor less file, set the variable to 0px, eg:
@grid-float-breakpoint: 0px;
Reading the answers, I believe you are talking about Bootstrap version 2. Maybe someone looking for an answer for Bootstrap 3 will arrive here. This answer is for you!
This worked well for me:
.nav-collapse, .nav-collapse.collapse {
overflow: visible;
}
.navbar .btn-navbar {
display: none;
}