I applied the following code to achieve custom break-point to bootstraps navbar discussed in this question: Bootstrap custom breakpoint
@media (max-width: 1000px) {
  .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;
  }
}
The navbar collapses below the custom break-point @media (max-width: 1165px) however the drop-down does not open correctly.
Though, for bootstrap's default breakpoint (768px) it works correctly.
 Can anybuddy tell me why it does not work for custom breakpoint. Is it a bootstrap jquery/javascript issue. How to get it drop down correctly for custom breakpoint.
Can anybuddy tell me why it does not work for custom breakpoint. Is it a bootstrap jquery/javascript issue. How to get it drop down correctly for custom breakpoint.
thanks dk

 
     
    