Answer the question
In order to leave comments, you need to log in
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
Redefine media queries.
@media (min-width: 992px) {
ваши стили
}
@media (min-width: 767px) {
ваши стили
.collapse.navbar-collapse.in { ... }
}
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 questionAsk a Question
731 491 924 answers to any question