hello, as in the screenshot I would need to have this effect on the “Accedi” button so in the normal state it is color border and white font, while in the background hover # ffcc01 and black font.
Is it possibile?
image screenshot: https://ibb.co/2tN6NmY
Hey,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:
CSS Snippet:
#top #header .av-menu-button > a .avia-menu-text {
border-color: #ffcc01;
color: white;
}
#top #header .av-menu-button > a:hover .avia-menu-text {
color: black;
background-color: #ffcc01;
}
Best regards,
Yigit
AMAZING! thank you so much, it was make me crazy!