How to fill the form to full page?

  • sofiman
    Asked on April 22, 2017 at 5:05 PM

    Hello,

    I need that survey to be in the whole page not just centered .. how to do that ?

  • Mike
    Replied on April 22, 2017 at 6:31 PM

    Your current form theme is designed for a specific width. If you would like to override the form width, you can do this by injecting custom CSS to the form.

    Example:

    .form-all {
    width: 1200px;
    max-width: 1200px;
    }

    Thank you.