BOOTSTRAP NAV Collapsed Colapse changing height alignment

0

Problem: I need a navbar with HEIGHT GREATER.

I changed the css

.navbar {
  min-height: 80px;
  vertical-align: middle;
}

.navbar-collapse .collapse .in {
    padding-top:80px;
}
  • Vertical alignment of links is not vertically centralized
  • When collapsed, the menu is invading the logo space
  • asked by anonymous 08.09.2017 / 22:22

    1 answer

    1

    In your HTML place your navbar inside a class called .header for example. Within this class work the size of it in your given media queries. Your logo you can put it with the img-responsive class and work the size of it in each media queries tb.

    ex: normal (desktop) .header { height: 200px } Cellular Media: .header {height: 100px}

        
    16.09.2017 / 23:32