Bootstrap navbar – disable collapse

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;
}

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:

http://stackoverflow.com/a/32691410/3374799