Hello –
I have created a button and employed a “custom color” (for both background and font).
For this specific button, if possible, I’d like to use its Custom CSS to make a few more tweaks to its appearance:
1) add a custom border, with a specific color and width.
2) adjust the opacity of the button’s background color.
Can you help?
Thank you!
Hi Jennifer!
Set a custom class to it and then use the following CSS code or similar:
.custom_button .avia-button{
border: 1px solid red;
}
.custom_button .avia-button:hover{
opacity: 0.5;
}
Regards,
Josue
Thanks so much, Josue. Worked perfectly.