• Resolved samuelmartin

    (@samuelmartin)


    Hi,

    I was wondering if anyone could help me with a little challenge I have. I would like to invert the colors of the review links buttons. They appear at the bottom below “user review” if you choose visitor’s aggregate rating.

    At the moment they are white with text in blue, and when hover over, it changes to background blue and text in white. I wonder if anyone can help with some css.

    Regards

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author MyThemeShop

    (@mythemeshop)

    Hello @samuelmartin,

    Thank you for contacting MyThemeShop.

    Here is the custom CSS which you can use in the WP Dashboard >> Appearance >> Customizer >> Additional CSS

    /*  Regular */
    #review .review-links a {
        background: #1e73be;
        color: #fff;
    }
    /* Hover */
    #review .review-links a:hover {
        background: #fff;
        color: #1e73be;
    }

    You can change the color values as per your requirements.

    Hope this helps.

    Thank you.

    Thread Starter samuelmartin

    (@samuelmartin)

    Mega thank you. It worked like a charm.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘change colors of review links buttons in default theme’ is closed to new replies.