• Resolved mamebart

    (@mamebart)


    Hi,

    How can I change the background color of the start quiz button and the hover effect on the shown answers? Already tried via custom css code (see below), but that doesn’t seem to change anything.

    .fca_qc_button {
    background-color:#e91e63;
    }

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author fatcatapps

    (@fatcatapps)

    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.

    Plugin Author fatcatapps

    (@fatcatapps)

    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.

    Thread Starter mamebart

    (@mamebart)

    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;
    }

    Thread Starter mamebart

    (@mamebart)

    Finally, this code did the trick.

    .fca_qc_button {
    background-color: #e91e63 !important;
    }

    .fakehover {
    background-color: #e91e63 !important;
    }

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Change button color’ is closed to new replies.