Height of Menu

Hello Everybody,

i would like to change the height of the menu bar (default is around 56px and I would like to have it 40px high), i tried looking in the css but it seems quite complicate as i don’t understand if there is some table behind which is not related to the css.

Anybody can help me? Thx a lot

Add this code to Theme Options - Other - Custom CSS or inside your Child Theme style.css if you use one.

.navbar {
    min-height: 40px;
}
.navbar-nav > li > a {
    padding-bottom: 10px;
    padding-top: 10px;
}

You can tweak these values if you like but by default menu heigh will be 40px.

Thanks a lot!