Skip to main content
How to change the width of your form

Let's see how you can change the width of your form so that it expands to the size of the screen

Updated over a week ago

By default, forms take up a narrow width to encourage form builders to design forms which work well across various devices and screen sizes. However, for some scenarios it may be desirable for a form to span the full width of the screen or simply be increased to accommodate larger forms. To do this you can use the custom CSS feature by following the steps below:

  1. Open the form builder screen for the form you wish to modify

  2. Click the "..." icon in the top right-hand corner to open the context menu

  3. Click "Custom CSS" and enter the follow CSS

.form-container{
width: 100%;
max-width: 1500px;
}

โ„น๏ธ Note that the custom CSS feature is only available under a paid subscription

Did this answer your question?