Home Forums WoodMart support forum Mailchimp Email Signup Styling

Mailchimp Email Signup Styling

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

    inputchip
    Participant

    Hello,

    How do I style the Mailchimp email form in the footer to have the button inline with the email field? I also want the button style/color to be the same as the rest of the website. I would also like to style the text so it is the same font as others.

    I used this guide, https://xtemos.com/docs/woodmart/faq-guides/mailchimp-signup-form/

    Login info in private area.

    Attachments:
    You must be logged in to view attached files.
    #259607

    Hello,

    Please try adding the following Custom CSS in the Custom CSS for Desktop area under Theme Settings >> Custom CSS.

    .btns-accent-light .mc4wp-form input[type=submit] {
        float: right;
        margin-top: -62px;
    }

    Best Regards.

    #259626

    inputchip
    Participant

    Thank you that seemed to have worked, but how can I get the round button style and matching colors to the rest of my site like in your Retail Demo? Also the email field width needs to be shortened. Please see the screen shot.

    Attachments:
    You must be logged in to view attached files.
    #259644

    Hello,

    You are Most Welcome.

    Please try adding the following Custom CSS in the Global Custom CSS area under Theme Settings >> Custom CSS.

    .btns-accent-light .mc4wp-form input[type=submit] {
        background-color: indianred;
        border-radius: 20px;
    }

    For the width of the input field try adding the following Custom CSS in the Custom CSS for Desktop area under Theme Settings >> Custom CSS.

    .mc4wp-form-fields input[type=email] {
        width: 60%;
    }

    Best Regards.

    #259809

    inputchip
    Participant

    The proper way to make the field and submit button on the same line is editing the MC4WP form to this:

    <input type="email" name="email" placeholder="Your email address" required />
    <input type="submit" value="Sign up"  />

    This is a much cleaner solution I think instead of adjusting margins and field widths.

    #259929

    Hello,

    We are Glad that you managed to resolve the issue by yourself. You are Great!!!

    Let us know if there’s anything else we can do for you! You can always reach us at any time. We are always here to help you.

    Have a wonderful day.

    Topic Closed.
    Best Regards.

Viewing 6 posts - 1 through 6 (of 6 total)

The topic ‘Mailchimp Email Signup Styling’ is closed to new replies.