Spaces between Menu, Logo and Tagline

Hi,

First of all, I want to thank you for this amazing free theme! You rock!

My question is: how do I change the space (margin) between the menu, logo and tagline? I wanna make the spaces smaller…

In the picture I point what I want to change…

Thank you in advance!

Hi @designbynani,

I hope you are well today and thank you for your question.

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Activello Options -> Other -> Custom CSS


.navbar-default .dropdown-menu li a {
    padding: 10px 15px;
}
.navbar-default .navbar-nav li a {
    padding: 10px 0;
}
div.nav-search {
    padding: 10px 0;
}
div#logo {
    padding: 40px 0 35px 0;
}
div.tagline {
    margin-top: 0;
}

Best Regards,
Movin