Title: Inline Submit Button
Last modified: November 4, 2021

---

# Inline Submit Button

 *  Resolved [Clif Haley](https://wordpress.org/support/users/clifhaley/)
 * (@clifhaley)
 * [4 years, 7 months ago](https://wordpress.org/support/topic/inline-submit-button-3/)
 * I have selected the “inline” option in the form builder but the Submit button
   still appears below the form. How can I fix this? I purchased and installed the
   customizer but it just broke the entire WordPress customization backend so I 
   had to disable it. I’m styling “by hand” with CSS.
 * The page I need help with: _[[log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Finline-submit-button-3%2F%3Foutput_format%3Dmd&locale=en_US)
   to see the link]_

Viewing 1 replies (of 1 total)

 *  [jpowersdev](https://wordpress.org/support/users/jpowersdev/)
 * (@jpowersdev)
 * [4 years, 7 months ago](https://wordpress.org/support/topic/inline-submit-button-3/#post-15055190)
 * Hi [@clifhaley](https://wordpress.org/support/users/clifhaley/),
 * It looks like the form is just too wide for that spot. Even though it’s “inline”,
   it’s wrapping to the next line.
 * You can fix that by using flexbox. Here’s an example that only applies to screens
   above 650px (it looks fine below that):
 *     ```
       @media(min-width: 651px){
       	{
       		.yikes-mailchimp-form-inline {
       			display: flex;
       			align-items: flex-end; // to account for the labels.
       		}
       	}
       }
       ```
   
 * I only checked the page you sent me, so you’ll need to make sure there aren’t
   other forms that this interferes with. If you have to make it more specific, 
   you can change the selector like this:
 * `#dime-newsletter-1.yikes-mailchimp-form-inline`
 * Let me know if that helps,
    Jon

Viewing 1 replies (of 1 total)

The topic ‘Inline Submit Button’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/yikes-inc-easy-mailchimp-extender_a1c7e5.
   svg)
 * [Easy Forms for Mailchimp](https://wordpress.org/plugins/yikes-inc-easy-mailchimp-extender/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/yikes-inc-easy-mailchimp-extender/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/yikes-inc-easy-mailchimp-extender/)
 * [Active Topics](https://wordpress.org/support/plugin/yikes-inc-easy-mailchimp-extender/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/yikes-inc-easy-mailchimp-extender/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/yikes-inc-easy-mailchimp-extender/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [jpowersdev](https://wordpress.org/support/users/jpowersdev/)
 * Last activity: [4 years, 7 months ago](https://wordpress.org/support/topic/inline-submit-button-3/#post-15055190)
 * Status: resolved