How can I center the fields in a responsive form?

  • eastendyves
    Asked on October 13, 2016 at 1:50 PM

    Hey Jotform Gang,

    When my responsive form shrinks with the display, the fields align on the left (but not the submit button).

    How can I keep everything centered?

    How can I center the fields in a responsive form? Image 1 Screenshot 30

    How can I center the fields in a responsive form? Image 2 Screenshot 41

  • David JotForm Support Manager
    Replied on October 13, 2016 at 5:42 PM

    Please try injecting the following code: https://www.jotform.com/help/117-How-to-Inject-Custom-CSS-Codes 

    @media only screen and (max-width: 480px) {

    .form-line{

        left: 8%;

    }

    id_2#{

        margin-left: -8% !important;

    }

    }

    Example:

    How can I center the fields in a responsive form? Image 1 Screenshot 20

    Let us know if you need more help.

  • eastendyves
    Replied on November 2, 2016 at 5:27 PM

    That's great! Thanks!