Skip to main content
All CollectionsTroubleshooting and FAQsFrequently Asked QuestionsContact Form Module
How to Make the Contact Form Module's Submit Button Fullwidth
How to Make the Contact Form Module's Submit Button Fullwidth

Customize the Contact Form's modules submit button to be fullwidth

Updated over 4 months ago

By default, the Submit button on a Contact Form module is placed on the Right and has a fixed width.

Using a custom CSS code, we can set the submit button width to be full width.

Setup the Contact Form module

  1. Open the Contact Form module's settings by clicking on the Gear icon

  2. Go to Advanced Tab โ†’ Custom CSS โ†’ Free Form CSS

  3. Add this CSS Code:

    selector .et_contact_bottom_container {
    width: 100%;
    flex-direction: column;
    gap: 1em;
    padding-left: 3%;
    margin-top: 0px;
    }

    selector .et_contact_bottom_container button {
    width: 100%;
    margin: 0;
    }

The result would be as per the screenshot below:

Contact Form module - Fullwidth Submit button
Did this answer your question?