Reply To: Extra space at bottom of main menu

Home Forums Support Extra space at bottom of main menu Reply To: Extra space at bottom of main menu

Home Forums Support Extra space at bottom of main menu Reply To: Extra space at bottom of main menu

#200988
Tom
Lead Developer
Lead Developer

Hi Dee,

You have this in your custom CSS:

li {
    margin-bottom: 1em;
}

That’s applying to all list items.

I would make that more specific, or counter it with this:

.main-navigation li {
    margin-bottom: 0;
}