How to center the form?

  • thatscreative
    Asked on February 14, 2017 at 4:51 AM
    Also, no matter what I do, I cannot center the form.
  • BJoanna
    Replied on February 14, 2017 at 4:58 AM

    To center your form, removed the CSS code that you have added to your form:

    .form-all {

        margin-left : 0 !important;

    }

    and add this CSS code:

    .form-all {

        margin : 0 auto!important;

     

    }

    How to Inject Custom CSS Codes

    After that your form will look like this.

    How to center the form? Image 1 Screenshot 20

    Here is my demo form: https://form.jotform.com/70441826525960 

    Feel free to clone it.

    Hope this will help. Let us know if you need further assistance. 

  • thatscreative
    Replied on February 14, 2017 at 5:57 AM

    So helpful! Much appreciated :)