Make Bootstrap 3.0 NavBar content always collapsed

前端 未结 5 1753
逝去的感伤
逝去的感伤 2020-12-06 18:48

I need to make a section of a NavBar of Bootstrap 3.0 always collapsed.

Actual sections of the navbar:

  • Links
  • Search Form
  • Login Form
5条回答
  •  Happy的楠姐
    2020-12-06 19:39

    For those using LESS, head to variables.less and change:

    @grid-float-breakpoint:     @screen-sm-min;
    

    to:

    @grid-float-breakpoint:     999999999px;
    

    One line change that works like a charm. Just be sure to use an unrealistically large number of pixels (em did not work for me).

提交回复
热议问题