Would you by any chance know if there is a way to center the fields on theform?

  • lobbypad
    Asked on March 23, 2017 at 10:55 AM
    Would you by any chance know if there is a way to center the fields on the
    form?
    ...
  • Welvin Support Team Lead
    Replied on March 23, 2017 at 11:12 AM

    Do you mean, center the label and input sections? Something like this cloned version of your form: https://www.jotform.com/70814276329965? If so, do the following:

    1. Set the form label to top:

    Would you by any chance know if there is a way to center the fields on theform? Image 1 Screenshot 20

    2. Inject the following custom CSS codes to your form:

    .form-label {

        text-align: center !important;

    }

    [data-type="control_radio"] .form-input, [data-type="control_checkbox"] .form-input, [data-type="control_radio"] .form-input-wide, [data-type="control_checkbox"] .form-input-wide {

        max-width: 100% !important;

    }

    .supernova .form-all, .form-all {

        text-align: center !important;

    }

    To inject, follow our steps on this guide: https://www.jotform.com/help/117-How-to-Inject-Custom-CSS-Codes.

  • lobbypad
    Replied on March 23, 2017 at 11:46 AM
    Yes exactly! Thanks very much
    ...