• Resolved touristsite

    (@touristsite)


    Hi, just installed your excellent plugin and very happy with it, thanks!

    Just keen to make the “your message” text box a bigger box instead of the single line it is now. Is that possible? Also, the “submit” box is not centred vertically. Is that possible to change that too?

    Many thanks in advance!

    Rene

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

Viewing 1 replies (of 1 total)
  • Plugin Contributor Tracy Levesque

    (@liljimmi)

    🏳️‍🌈 YIKES, Inc. Co-Owner

    Hi @touristsite

    Mailchimp doesn’t allow a bigger message field because it’s meant to be a newsletter signup vs. a contact form. If you want more of a contact form with an opt-in added, I’d recommend using Contact Form 7 with our plugin’s integration.

    As for the submit button, your theme’s style sheet is adding a line-height to all elements with a .btn class which is causing this.

    .btn {
        line-height: 50px;
    }

    To change it for just this button, try this.

    .yikes-easy-mc-submit-button.btn {
        line-height: 1;
    }

    You have a few options to add CSS code:

    • If you’re using WordPress 4.7 or higher, you can go to Appearance > Customize > Additional CSS and place the code there.
    • If you created this theme yourself, you can add it to your style.css file
    • If you’re using a theme you downloaded or bought you can make a child theme and add the code to your child theme’s style.css file
    • Your theme may have a “Custom CSS” option. If it does, then you can paste it in there.
    • You can use a plugin like Simple Custom CSS or Jetpack and enter the code in their Custom CSS area

    Let me know if that works!

    -Tracy

Viewing 1 replies (of 1 total)
  • The topic ‘Change size of text box’ is closed to new replies.