How can I make the font size bigger for submit button?

  • JeffHBM
    Asked on January 11, 2018 at 4:26 PM

    How can I make the FONT size bigger for SUBMIT? Is this something I can customize as needed?

    Jotform Thread 1346655 Screenshot
  • Welvin Support Team Lead
    Replied on January 11, 2018 at 5:27 PM

    Add the following custom CSS codes to your form:

    .form-submit-button {

        font-size: 25px !important;

    }

    Change the font size to your desired size.

    Please follow the steps in this guide to inject: https://www.jotform.com/help/117-How-to-Inject-Custom-CSS-Codes.

    Note that if you want to change the font size of the print/reset buttons, add the following custom CSS codes:

    .form-all .form-submit-reset, .form-all .form-submit-print {

        font-size: 25px !important;

    }

  • JeffHBM
    Replied on January 11, 2018 at 5:50 PM

    Thank you!