Bootstrap 3 multiple navbars

后端 未结 2 2155
无人及你
无人及你 2021-02-20 05:46

I\'m having trouble with multiple bootstrap in Twitter Bootstrap 3. First Navbar is working ok with resizing and responsive. Second navbar doesn\'t work properly in normal reso

相关标签:
2条回答
  • 2021-02-20 06:09

    If you add the following bit of CSS (either in a style tag or a custom css file), it should fix your problem.

    @media only screen and (min-width: 768px) {
      .navbar-collapse2.collapse {
        display: block !important;
        height: auto !important;
        padding-bottom: 0px;
        overflow: visible !important;
      }
    }
    

    I pulled this code from the code in bootstrap.css for .navbar-collapse

    0 讨论(0)
  • 2021-02-20 06:12

    try changing <div class="navbar-collapse2 collapse"> to that <div class="navbar-collapse collapse">

    0 讨论(0)
提交回复
热议问题