F
F
Fredd Monty2016-04-06 18:57:54
css
Fredd Monty, 2016-04-06 18:57:54

How to collapse menu at 992 bootstrap?

Bootstrap 3. The
default menu collapses to 767 in a sandwich, how to change what would collapse to 992?
Thank you!

Answer the question

In order to leave comments, you need to log in

2 answer(s)
H
HamSter, 2016-04-06
@ferds

Redefine media queries.

@media (min-width: 992px) {
    ваши стили 
}
@media (min-width: 767px) {
    ваши стили 

   
      .collapse.navbar-collapse.in { ... }
  
}

Here's how I would do it.
There is another option to get into the styles of the bootstrap and edit the styles there to your taste. The problem is if someone after you will still edit the layout.

C
crescent, 2016-04-07
@crescent

Here is a working algorithm:
go here:
bootstrap-3.ru/customize.php Find the @grid-float-breakpoint field and change it to
992px
Generate bootstrap.css rules something in it, then in the generated file look for fields 992 , 991 and copy the styles with them to your bootstrap

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question