Hi I’m trying to make button that is theme color and then on hover changes to a different color to make it more noticeable. What code / file would I add and edit for that?
Thanks kindly,
Chris
Hi,
Just add this on your custom.css or Quick CSS
body .avia-button.avia-color-theme-color:hover {
color: white;
color: rgba(0, 0, 0, 0.5);
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
background-color: blue;
}
Change the values.
Regards,
Ismael
Thanks Ismael :)