Dropdown padding

Hi,

I add 5px padding top and bottom to the navbar (the logo was previously next to the border).

But not, the dropdown starts above the navbar and not down it.

What CSS I have to add to fix it?

Thanks

Hi @Movin, I need support :frowning:

Hi @FuoriLuogo,

Thank you for your another question.

Could you please share me your site URL where it’s displaying so that i can help you?

Kind Regards,
Movin

Hi @Movin,
this is the site
http://www.fuoriluogoasti.com/

Now I changed the color of the drop down so it’s less evident, but the problem is still visible is you select the first item of the dropdown

You are trying to add padding wrong way instead you should try adding padding as following so that this issue will be resolved.

.navbar-default .navbar-nav > li > a {
    padding: 25px 15px;
}
#page #logo {
    padding-top: 5px;
}
#page nav.navbar.navbar-default {
    padding: 0;
}

Thank you very very much, it works great

You are most welcome here :slight_smile: