How to set submit button on %

  • Tenniszentrum_Arsenal
    Asked on March 21, 2017 at 9:18 AM

    Hi!

    I tried to set the width of the submit button on % by using the CSS Helper.

    It is working well on websites but on android phones it is still too big.

  • David JotForm Support
    Replied on March 21, 2017 at 12:11 PM

    Adding the following code will allow you to adjust the width of your submit button on mobile:

    https://www.jotform.com/help/117-How-to-Inject-Custom-CSS-Codes

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

        .form-submit-button {

            width : 80% !important;

        }

    }