• Resolved onyekaxt

    (@onyekaxt)


    Hi.

    “You must be logged in to submit a review. You may also register for an account.”

    1. How can I edit this text from the backend, and also change link color?

    .glsr-button {}

    2. How can I add HOVER attribute to that button?

Viewing 1 replies (of 1 total)
  • Plugin Author Gemini Labs

    (@geminilabs)

    1. Use the Translations page in the settings to change the text.

    The link color is inherited from your theme. To change the color, you’ll need to override your link style from your theme. Something like:

    .glsr a {
        color: red;
    }

    2. It’s CSS, so just add :hover to the class.

    .glsr-button:hover {
        ...
    }

    You can also try changing the Plugin style in the settings.

Viewing 1 replies (of 1 total)
  • The topic ‘backend fixes’ is closed to new replies.