Bootstrap 3 - show collapsed navigation for all screen sizes

后端 未结 6 679
攒了一身酷
攒了一身酷 2020-12-01 02:14

I am using Bootstrap v3.

I have the navbar classes in place so that when I have my screen mobile-size the navigation collapses and the little grid-like toggle button

6条回答
  •  -上瘾入骨i
    2020-12-01 02:40

    Easiest way i found is to change the variable.less file and change

    // Navbar collapse
    //** Point at which the navbar becomes uncollapsed.
    @grid-float-breakpoint:     @screen-sm-min;
    

    to

    // Navbar collapse
    //** Point at which the navbar becomes uncollapsed.
    @grid-float-breakpoint:     ( your break point );
    

    Only if you use LESS ofc.

提交回复
热议问题