Nav Menu height adjustment

Hi there!

Firstly Thank you for developing a wonderful theme I’m loving working with it and trying to make things work for me!

I was wondering if there was an easy way to adjust the nav menu height? I managed to find some code you provided which enables you to make the top Nav menu sticky so that users always have access to it but since I don’t use a logo I would like to reduce its height so it seems a bit thinner.

Is it possible to do this?

Thanks you,

Anex

Add this code to Theme Options - Other - Custom CSS

.navbar-brand {
    display: none;
}
.navbar-nav li a {
    padding-top: 10px;
    padding-bottom: 10px;
}

First part of code will make sure to remove logo/title as you said that you don’t have it there already. And the second part of code will adjust navigation height.

Hi Aigars,

Thank you so much for your help and lightning fast response to my query! Your code worked perfectly and is performing exactly the way I wanted.

Thanks again,

Anex