Hi,
I think the title says it all. But if not, I’d basically just like to add a little space at the top and bottom of the dropdown menu items off of the main menu to make it match the space between the middle items. Can’t seem to find the class/id to alter here. Even after hours of poking around with Chrome’s dev tools. Please help. Thanx!
Hello!
You can add this on your custom.css or Quick CSS:
.sub-menu li:first-child a {
padding-top: 50px !important;
}
.sub-menu li:last-child a {
padding-bottom: 50px !important;
}
Adjust the padding.
Regards,
Ismael
Thank you. Perfect!