• Resolved eugeneyiga

    (@eugeneyiga)


    How do I change the color of the text for the email addresses people enter to subscribe in the footer? Right now it’s so dark that they can’t read what they’re typing. I’d like it to be white, like the confirmation text. Thanks!

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

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hey,

    Try adding this CSS to Theme Options> Custom CSS, and let me know if it works for you:

    .footerclass input.search-field {
        color: white;
    }
    .footerclass input.search-field ::-webkit-input-placeholder{
        color: white;
    }
    .footerclass input.search-field ::-moz-placeholder {
        color: white;
    }
    .footerclass input.search-field :-ms-input-placeholder {
        color: white;
    }
    
    .footerclass input[type=email]  {
            color: white;
    }
    .footerclass input[type=email] ::-webkit-input-placeholder {
            color: white;
    }
    .footerclass input[type=email] ::-moz-placeholder {
            color: white;
    }
    .footerclass input[type=email] :-ms-input-placeholder {
            color: white;
    }

    -Kevin

    Thread Starter eugeneyiga

    (@eugeneyiga)

    It worked, thanks Kevin! ??

    Great! I’m glad to hear it! Let me know if you need further assistance with this.

    -Kevin

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘change color of opt-in email text’ is closed to new replies.