[Resolved] Mailchimp widget success/error text color

Home Forums Support [Resolved] Mailchimp widget success/error text color

Home Forums Support Mailchimp widget success/error text color

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #2053861
    Halil

    Hi,

    There is a mailchimp widget on sidebar to collect emails. I’m trying to change success /error messages color with the css below but I’m unable to do it.

    I’m wondering if there is something overriding it. Could you please help me with that?

    `.mc4wp-form-9136 .mc4wp-success p{
    color: #3686be;!important
    }.mc4wp-form-9136 .mc4wp-error p{
    color: #dd3333;!important
    }

    #2054086
    Elvin
    Staff
    Customer Support

    Hi there,

    There’s a syntax error on your CSS. The !important has to go before the property delimiter ;.

    Example:

    .mc4wp-form-9136 .mc4wp-success p{
    color: #3686be !important;
    }
    
    .mc4wp-form-9136 .mc4wp-error p{
    color: #dd3333 !important;
    }
    #2054376
    Halil

    That didnt work as well unfortunately, still blackish color for both message types.

    #2054807
    Ying
    Staff
    Customer Support

    Hi Halil,

    It’s working: https://www.screencast.com/t/ZjaDaOwZHom

    Have you cleared your browser cache? ๐Ÿ™‚

    #2054951
    Halil

    Hi Ying,
    So strange that success css is not respected but error css is! Any idea?

    Or I am too blind and not seeing the error . Or may be it’s a plugin related error.

    #2054964
    Ying
    Staff
    Customer Support

    The CSS should work as I tested in developer’s tool:
    https://www.screencast.com/t/x3A8Wi1X

    But I do not see the CSS for success message has been added to your site.

    There might be an error in your CSS.

    Can you try add the CSS Elvin provided to the top of the customizer > additional CSS to test?

    #2054996
    Halil

    thank you Ying, I’ll check the code again. Appeciate your help.

    #2055010
    Ying
    Staff
    Customer Support

    No problem ๐Ÿ™‚

Viewing 8 posts - 1 through 8 (of 8 total)
  • You must be logged in to reply to this topic.