Can the text on forms default to all uppercase?

  • adaquestions
    Asked on February 5, 2021 at 11:17 AM

    In specific, I would like the name fields (first, middle and last name) to be UPPERCASE.

    Is that possible?


  • Alexander_G
    Replied on February 5, 2021 at 1:07 PM

    Hello,

    Thank you for reaching out to us.


    Unfortunately, it is not possible now,

    However, you can add some CSS to your Jotform to show the information in all caps but once it's submitted it would default back to the standard formatting except the user used all caps by his/her demand.

    Here is the guide on how you can inject the code: How-to-Inject-Custom-CSS-Codes 


    For all fields:

    .form-all input {
    text-transform: uppercase;
    }

    For specific fields:

    You need to find a specific Field's ID:

    1. Go to Settings of the field
    2. Advanced
    3. Field Details
    4. Copy Field's ID

    1612548256 601d88a0a046e  Screenshot 10

    Example:

    #first_7, #middle_7, #last_7 {
    text-transform: uppercase;
    }


    Also, I have found the related answers for you:

    https://www.jotform.com/answers/1200103

    https://www.jotform.com/answers/1143485


    If you have any questions - feel free to contact us.

    Alex