Home Forums Exoplanet Pro Increase Space Between Menu Items Reply To: Increase Space Between Menu Items

#6369
Andy
Keymaster

Hi Ivette, thank you it’s not always easy to get it right so thanks for your kind words.

Add the following CSS to Customize > Additional CSS
10px is the standard spacing. Change this to any value you require e.g. 30px
The second part of the code resets the drop down menu to zero to stop the custom changes being applied to the drop down too.

.main-navigation a {
    margin-left: 10px;
    margin-right: 10px;
}

.main-navigation ul ul a {
    margin: 0;
}