• Resolved jsgmarketing

    (@jsgmarketing)


    Hello,

    I just installed this plugin today. Everything is great except the formatting for the email submission is off. PLease use the link on this post for an example. The pop-up will display when you try to exit the phuage.

    Any reason why this formatting is off only in this field?

    Thank you.

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

Viewing 1 replies (of 1 total)
  • Plugin Support Williams – WPMU DEV Support

    (@wpmudev-support8)

    Hi @jsgmarketing

    I hope you’re well today!

    I checked the page in question and apparently your theme is adding “arbitrary” bottom margin to form fields that have a “type” set to “email” so that’s affecting Hustle forms as well.

    To fix that without changing them code you can use additional CSS like this:

    .hustle-form input[type='email'] {
      margin-bottom:0!important;
    }

    Adding this to “Appearance -> Customize -> Additional CSS” should help. Note please

    – if you are using any cache on site/server yiou might need to clear/puge it to see the result after adding this code

    – using “!important” in CSS is usually not recommended and isn’t particularly “elegant” but in this case it allows us to easily override the theme’s CSS without actually editing the theme itself.

    Best regards,
    Adam

Viewing 1 replies (of 1 total)
  • The topic ‘Formatting of email field is off’ is closed to new replies.