Hi,
I want to add custom class for button addon.
I made custom.css in \templates\helix_ulitimate\css with this simple rules:
.green-button {
box-shadow: 0px 0px 25px 8px rgba(0, 145, 179, 0.3);
transition: box-shadow .4s linear;
}
How to add this rule to all buttons on page when they are hover?
I try on one this code on one button:
.sppb-btn:hover {
box-shadow: 0px 0px 25px 8px rgba(0, 145, 179, 0.3);
transition: box-shadow .4s linear;
}
And this works, but I need to add for all buttons on pages using custom.css