Submit button shrinks in mobile device view

  • Cnelson0409
    Asked on June 1, 2017 at 10:59 PM
    Also, the submit button continues to shrink on the mobile version also. See photos. Submit button shrinks in mobile device view Image 1 Screenshot 20
  • Charlie
    Replied on June 1, 2017 at 11:22 PM

    To expand the submit button when viewed on a mobile device, try inserting this custom CSS code in your form:

    @media screen and (max-width: 480px), screen and (max-device-width: 767px) and (orientation: portrait), screen and (max-device-width: 415px) and (orientation: landscape) {

        .form-buttons-wrapper button {

            width: 100% !important;

        }

    }

     

    Here's a guide on how to insert a custom CSS code in your form: https://www.jotform.com/help/117-How-to-Inject-Custom-CSS-Codes 

    Let us know if that works.