Site logo

Archived topic

How to add Subscribe Blank Field?

5 replies · Started by Bhavleen on May 2, 2022

Viewing posts 1–6 of 6

Hi

I need to add the email address blank field in one of my call to action that I am trying to create.

Can someone please help me with how to add it without using a third-party plugin?

If we can't do it without using a plugin. Could you tell me how I make the current one that I have on my current website better?

Start with center aligning that funny-looking button?

https://prnt.sc/wyDz0NKGz4Ng

Hi Bhavleen,

Subscription email is not just a simple input field, there're functions behind it.

So your option would be hiring a developer to write custom function or use a plugin :)

To align it, add this CSS:

div.wpforms-container-full.inline-fields .wpforms-form .wpforms-submit-container {
    padding-top: 0;
}
form#wpforms-form-4000 {
    align-items: center;
    display: flex;
}

Hi Ying,

This worked very well. Thanks

Could you please also create a CSS code to make the button smaller so it aligns with the email address tab width?

Appreciate it.

Thanks

Hi Bhavleen,

Here is a CSS you may try adding in Appearance > Customize > Additional CSS:

div.wpforms-container-full .wpforms-form .wpforms-submit-container {
    padding-bottom:10px;
}

div.wpforms-container-full .wpforms-form button[type=submit] {
    padding-top:5px;
    padding-bottom:5px;
}

Hope this helps! :)

Thanks mate. This solved the issue.

You’re welcome Bhavleen! Glad to that worked! :)

This archived topic is closed to new replies.