Hi,
You can try this for a new breakpoint :
http://www.t3-framework.org/discussions/change-nav-collapse-breakpoint.html
If you want some explanations :
In variable.less, you have this :
// Point at which the navbar stops collapsing
@grid-float-breakpoint: @screen-sm-min;
In navbar.less you have this :
.navbar {
@media (min-width: @grid-float-breakpoint) {
}
}
To make it short, it means "when the screen is larger than @grid-float-breakpoint, element with the class navbar will appear". If you change the value of @grid-float-breakpoint in variables.less, then the navbar will disapear when you want. If you put "@grid-float-breakpoint: @screen-md-max;" instead of " @grid-float-breakpoint: @screen-sm-min;",
the navbar will disapear in screen with a width under 1199px, because "@screen-md-max: (@screen-lg-min - 1);", and "@screen-lg-min; = 1200px;".
Is that ok for you ?
Polo