I have a small amount of extra space below my logo on the left side and a lot of extra space above my menu items on the right side which is causing the menu on Desktop to look lopsided.
What is the best way to fix this without screwing up my mobile menu (all is good on mobile)?
I added this code to the “Additional CSS” section. It was meant for list items that appear in-content. Is there a way to exclude it from my menu?
/* Adds more white space in-between list items */
li {
margin-top: 1.0em;
}
/* Minimizes the left margin space on lists */
ol, ul {
margin-left: 1.5em;
}
/* Adds more white space in-between list items */
.entry-content li {
margin-top: 1.0em;
}
/* Minimizes the left margin space on lists */
.entry-content ol, .entry-content ul {
margin-left: 1.5em;
}