Use the following code to disable the navbar collapse in Twitter’s Bootstrap version 3.3.4:
/*no collapse*/
.navbar-collapse.collapse.off {
display: block!important;
}
.navbar-collapse.collapse.off ul {
margin: 0;
padding: 0;
}
.navbar-nav.no-collapse>li,
.navbar-nav.no-collapse {
float: left !important;
}
.navbar-right.no-collapse {
float: right!important;
}
Code language: CSS (css)
then add the .off class to each of the lists and the .no-collapse class to the main container. You can find a jade usage example here: