Tagged: , ,

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1299499

    How do I change the label text color within the Mailchimp Newsletter widget?

    I used the code snippet below from your documentation and it didn’t work. Is there another bit of CSS you can suggest?

    /*—————————————-
    // CSS – Newsletter label
    //————————————–*/

    .avia_ajax_form.avia-mailchimp-form label {
    color:#8e43e7;
    }

    #1299532

    Hey Snerp,

    I’m not seeing label at all. Just placeholder text.

    Best regards,
    Jordan Shannon

    #1299702

    Sorry, I mean placeholder. Can this be changed via the theme with CSS?

    #1299711

    Hi,

    Add this to quick css:

    ::-webkit-input-placeholder {
        color: #8e43e7!important;
    }
    :-moz-placeholder {
        color: #8e43e7!important;
    }
    ::-moz-placeholder {
        color: #8e43e7!important;
    }
    :-ms-input-placeholder {
        color: #8e43e7!important;
    }

    Best regards,
    Jordan Shannon

    #1299736

    Thank you sir, that’s what I was needing. Have a great day.

    #1300029

    Hi,

    Glad it is working. Please feel free to open another thread if you need anything else.

    Have a nice day.

    Best regards,
    Ismael

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Mailchimp Newsletter Widget’ is closed to new replies.