• Resolved okpaul

    (@okpaul)


    Hiya

    When someone enters their email address and hits “Subscribe” a confirmation text appears which says: Thank you for signing up! Please check your email to confirm your subscription.

    Any idea how to change the color of that text? I’ve tried a few selectors but nothing seems to be affecting the color. It’s a paragraph tag with the following classes: gem-suppressed gem-success

    Thanks
    Paul

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

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

    (@eherman24)

    Hi @okpaul

    If the css selector is gem-success you should able to just do:

    .gem-success {
       color: green;
    }

    If your theme is overriding the color you should be able to do

    .gem-success {
       color: green !important;
    }

    Let us know if that helps!

    Thread Starter okpaul

    (@okpaul)

    Thanks Evan, not sure why that wasn’t working for me before but yes that fixed the issue thanks again!
    Paul

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Changing the color of the confirmation text’ is closed to new replies.