Join the Soledad Facebook Users Group here
for Share, assistance, discussion, and Updates related to Soledad WordPress Theme.

If you can't create a new ticket - you can send us an email via our contact form and we will get back to you.

Okay
  Public Ticket #2080777
Mailchimp subscriber forms
Closed

Comments

  •  1
    elliebc started the conversation

    Hi there, 

    How do i customise mailchimp forms CSS in Soledad? I want to make the form on this page centred, larger and more full width, and also change the hover colour of he subscribe button, but I can't find any place in the theme customiser to to this? I am using the Mailchimp for WP plugin. 

    thank you

    Ellie

  •  2,699
    PenciDesign replied

    Hi,

    Please try add more this code to Customize > Custom CSS to do that:

    .wpb_text_column .mc4wp-form, .post-entry .mc4wp-form{ margin-left: auto; margin-right: auto; max-width: 700px; }
    .mc4wp-form input[type="submit"]:hover{ background-color: #ff0000; }

    1/ Change value 700 to any value as you want for the width.

    2/ Change color code #ff0000 to any color code as you want for hover on submit button. You can get a color code here


    Best Regards,

    PenciDesign

  •  1
    elliebc replied

    Thanks so much! That worked great. How do I change the default colour of the subscribe button (without hovering)? 

  •  2,699
    PenciDesign replied

    Hi,

    Please replace the code I sent to this code:

    .wpb_text_column .mc4wp-form, .post-entry .mc4wp-form{ margin-left: auto; margin-right: auto; max-width: 700px; }
    .mc4wp-form input[type="submit"]{ background-color: #ffff00; }
    .mc4wp-form input[type="submit"]:hover{ background-color: #ff0000; }

    Change 2 color codes above to any color code as you want.


    Best Regards,

    PenciDesign