Hello there,
I would suggest using :hover selector of CSS for targeting the hover elements and adding an !important after your styles to give it more precedence.
The CSS code for achieving this can be somewhat challenging for someone who is new to CSS so I would suggest diving deeper into it or getting an external help for getting the effects you desire.
Let us know if you have any other questions.
Thanks.
Hello there,
It’s been a few days since we replied last. We just wanted to make sure that your issue got resolved or you had any other queries. I would like to inform you that I will mark this thread as resolved in a few days if we do not get a reply back from you within a few days.
Let us know if you have any other questions.
Thanks.
Hello,
Thank you for guiding me to the right direction! I used the combined css below, and this gives the button the background color I wanted. Still figuring out how to change the color of the hover effect though, as it is still green/blue-ish. You can see the result at https://www.gdpr-info.be/nl/gdpr-quiz/
.fca_qc_button {
background-color: #e91e63 !important;
}
a:hover {
background-color: #e91e63 !important;
}
Finally, this code did the trick.
.fca_qc_button {
background-color: #e91e63 !important;
}
.fakehover {
background-color: #e91e63 !important;
}