html - Bootstrap menu always collapsed issue -


i facing issue in making bootstrap menu collpased default working fine till 991px need thing done till max-width of 1400px. appreciated.

http://www.theo2.co.in/fashionongo/

i'm not sure how theme built try this: in custom css file add media query like:

@media (max-width: 2000px) { .navbar-header {     float: none; } .navbar-left,.navbar-right {     float: none !important; } .navbar-toggle {     display: block; } .navbar-collapse {     border-top: 1px solid transparent;     box-shadow: inset 0 1px 0 rgba(255,255,255,0.1); } .navbar-fixed-top {     top: 0;     border-width: 0 0 1px; } .navbar-collapse.collapse {     display: none!important; } .navbar-nav {     float: none!important;     margin-top: 7.5px; } .navbar-nav>li {     float: none; } .navbar-nav>li>a {     padding-top: 10px;     padding-bottom: 10px; } .collapse.in{     display:block !important; } } 

they key code 2000px part. if screen size gets on 2000px menu open. try , see if work on site


Comments

Popular posts from this blog

Fail to load namespace Spring Security http://www.springframework.org/security/tags -

sql - MySQL query optimization using coalesce -

unity3d - Unity local avoidance in user created world -