css - Bootstrap responsive issues -
in bootstrap button class "navbar-toggle" in navbar appears when screen less 768px, i.e. 767px. but ipad mini has screen dimensions 768-1024px. should override bootstrap style 768px 992px, this:
@media (min-width: 992px){ .navbar-toggle { display: none !important; } }
you should not change bootstrap file itself, advised if need add dimensions own custom css file over-write bootstrap lib file.
its ok overwrite bootstrap specify min , max width ensure catering particular edge case.
Comments
Post a Comment