MagiMagellan2 top-bottom padding in vertical menu

Hi,

I would like have some padding (top and bottom) in each item in MagellanMagic2 in vertical position.
Perhaps I missed something ?

Thx !

Jérôme

By default, the mobile menu items have 1rem top and bottom padding.
You can increase this if you want using the following CSS and just change the amount as required:

.mag-toggle .magic-nav>.mag-item a:not(.button){
	padding-top: 2rem!important;
	padding-bottom: 2rem!important;
}
1 Like

Okay Thx a lot ! it’s work ! But I made a mistake I wrote bad : it’s the vertical Orientation in the MagicMagellan2 and not the mobile menu…

So is it actually padding on the menu items that you want or spacing between them?

1 Like

Yes padding on menu items

OK - this should just affect the vertical menu and not the mobile one:

.mag-vertical:not(.mag-toggle) li>a:not(.button){
	padding-top: 1.6rem!important;
	padding-bottom: 1.6rem!important;
}
1 Like

Yeah ! Great, thx a lot man !

1 Like