Hello there,
You can do that by adding the following CSS snippet into your site’s additional CSS option which resides in the Appearance > Customize > Additional CSS.
.roll-button,
.roll-button.border{
background-color: #e46b25;
border-color: #e46b25;
color: #ffffff;
}
.roll-button:hover,
.roll-button.border:hover{
background-color: #25e47e;
border-color: #25e47e;
color: #e4e125;
}
Adjust the hex color code as needed.
Regards,
Kharis
Thread Starter
catheg
(@catheg)
Thx Kharis.
I had to add !important behind color.
.roll-button {
background-color: #00FF00 !important;
color: #0000FF !important;
border-color: #00FF00 !important;
}
.roll-button:hover {
background-color: transparent !important;
color: #0000FF !important;
border-color: #00FF00 !important;
}
And now it’s ok.
Regards.
Catherine.