Is there a way to force all the answers to my form to be answered in uppercase by default

  • margamartinez
    Asked on September 25, 2020 at 11:18 PM

    How to make the answers inputted in my form be in uppercase by default?

  • roneet
    Replied on September 26, 2020 at 8:24 AM

    You can set your jotform to show the information in all caps but once it's submitted it would default back to the standard formatting unless the user used all caps in the first place. Here is the code you can inject:

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

    .form-all input {

    text-transform: uppercase;

    }

    Thanks