# How do I increase the navbar height to accommodate a taller logo?

**URL:** https://meta.discourse.org/t/how-do-i-increase-the-navbar-height-to-accommodate-a-taller-logo/34883
**Category:** Support
**Created:** [October 25, 2015, 6:26am UTC](https://meta.discourse.org/t/how-do-i-increase-the-navbar-height-to-accommodate-a-taller-logo/34883 "2015-10-25T06:26:30Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![orangepeel](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/orangepeel/32/46244_2.png) [@orangepeel](https://meta.discourse.org/u/orangepeel)
#### Post date: [October 25, 2015, 6:26am UTC](https://meta.discourse.org/t/how-do-i-increase-the-navbar-height-to-accommodate-a-taller-logo/34883/1 "2015-10-25T06:26:30Z")

</div>

I made this modification to the CSS:

```
.logo-small, .logo-big {
  max-height: 100px !important;
  margin-top:-8px;
}

```

That increased the size of the logo, but now the logo is too big for the navbar. How can I increase the height of the navbar to accomodate the logo?

---

<div class="post-metadata">

### Author: ![Krischan](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/krischan/32/47290_2.png) [@Krischan](https://meta.discourse.org/u/Krischan)
#### Post date: [October 25, 2015, 7:42am UTC](https://meta.discourse.org/t/how-do-i-increase-the-navbar-height-to-accommodate-a-taller-logo/34883/2 "2015-10-25T07:42:09Z")

</div>

Try

```
.d-header {
    height: 120px;
}

```

---

<div class="post-metadata">

### Author: ![orangepeel](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/orangepeel/32/46244_2.png) [@orangepeel](https://meta.discourse.org/u/orangepeel)
#### Post date: [October 25, 2015, 5:43pm UTC](https://meta.discourse.org/t/how-do-i-increase-the-navbar-height-to-accommodate-a-taller-logo/34883/3 "2015-10-25T17:43:03Z")

</div>

That did it! Thank you!

---

<div class="post-metadata">

### Author: ![zogstrip](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/zogstrip/32/512781_2.png) [@zogstrip](https://meta.discourse.org/u/zogstrip)
#### Post date: [October 25, 2015, 6:35pm UTC](https://meta.discourse.org/t/how-do-i-increase-the-navbar-height-to-accommodate-a-taller-logo/34883/4 "2015-10-25T18:35:43Z")

</div>


