Hello, how do I control the spacing between the menu items in the BURGER MENU?
Hey mleite1,
Please try the following in Quick CSS under Enfold->General Styling:
#av-burger-menu-ul li {
line-height: 0.9em !important;
}
Best regards,
Rikard
Many thanks Rikard.
A question.
When you open the menu the link list is not centered on the screen. You can always leave the center. Notice in the image below that is below the screen.
How do I change the background color? My client does not like black
Hi,
Do you mean that it’s not centered vertically? If not then please try to explain a bit further.
You can use this to change the overlay background colour:
.av-burger-overlay-bg {
background:green !important;
}
Best regards,
Rikard
Hello, Rikard. It worked, but I need to put the link color in white. How I do?
Hi,
Great, glad you got it working. Do you mean the actual links in the menu or the burger menu link?
Best regards,
Rikard
Rikard, okay? I notice that the menu is not centered on the screen. How to centralize?
REFERENCE IMAGE
LINK
http://www.milkbrands.com.br
The menu has to be more on the screen. Centralized.
Hi,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:
#av-burger-menu-ul {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
position: absolute;
}
Best regards,
Vinay