Canard – Button Hover Color Change

  • Unknown's avatar

    Hey there,

    I have the premium plan, and am starting to customize my colors for this theme. I picked the three main default colors I was allowed to pick and they work great for all the hover links except the buttons inserted in individual posts and pages.

    I changed the text and background color, but when I hover over the button, it still changes to red. What CSS would I use to change this color?

    Thanks!

    The blog I need help with is: (visible only to logged in users)

  • Hi! You can change hover colors for ALL links like this (obviously subbing your own color as a name or as hex, as shown in the next example) :

    a:hover {
        color: orange;
    }

    If you just want to change them for the content area, something like this would work:

    .entry-content a:hover {
        color: #ffcccc;
    }

    I hope this helps! Let us know if you need more help.

  • The topic ‘Canard – Button Hover Color Change’ is closed to new replies.