Bootstrap 3 : Vertically Center Navigation Links when Logo Increasing The Height of Navbar

后端 未结 6 791
说谎
说谎 2020-12-07 20:32

I\'m new to the bootstrap framework.

Logo Increasing Height of NavBar:

In my navigation bar, I have inserted a logo that has a height of 50p

6条回答
  •  广开言路
    2020-12-07 21:14

    I actually ended up with something like this to allow for the navbar collapse.

    @media (min-width: 768px) { //set this to wherever the navbar collapse executes
      .navbar-nav > li > a{
        line-height: 7em; //set this height to the height of the logo.
      }
    }
    

提交回复
热议问题