-
Hello. I was wondering if you can help me with my newsletter sign up layout. The form consists of an email entry box and then the submit button. The two elements are currently stacked vertically on top of each other. I’d like the have the button horizontally aligned instead, basically side-by-side.
Thank you for your help!
-
Hi there,
try this CSS:
.wpforms-container .wpforms-form { display: flex; align-items: flex-start; max-width: 600px; margin: auto; } .wpforms-container .wpforms-field-container { flex: 1; } .wpforms-container .wpforms-form .wpforms-field, .wpforms-container .wpforms-form .wpforms-submit-container { --wpforms-button-size-margin-top: 0; margin: 0; padding: 0; }Note – the
max-width: 600px;can be adjusted to increase the width of the form -
Thanks, that worked well.
One more quick, related follow-up: The button is a slightly different height from the form box. Can you point me to the correct CSS element to add a slight bit of padding to the button?
I appreciate your help!
-
Try this CSS:
div.wpforms-container-full button[type="submit"] { --wpforms-button-size-height: 43px; } -
Looks great. I appreciate your help!
-
You’re welcome
Viewing 6 posts - 1 through 6 (of 6 total)
- You must be logged in to reply to this topic.