is there a way to make the masked letters all capped?

  • Joseph Vu
    Asked on September 24, 2022 at 11:38 PM

    is there a way to make the masked letters all capped?

  • Rhina JotForm Support
    Replied on September 25, 2022 at 1:30 AM

    Hi Joseph,

    Thanks for reaching out to Jotform Support. Unfortunately, it's not currently a direct functionality to set the text to allow only uppercase, we can open a feature request for this. Please respond with your confirmation if this is what you are referring to.

    In the meantime you can use custom CSS to specify the input of the field.

    Sample CSS:

    #input_1{

    text-transform:capitalize;

    }

    Inject this css code to your form:

    How-to-inject-custom-css-codes

    Please try this and let us know how it goes.

    Thanks Joseph!

  • Amy_Douglas
    Replied on October 23, 2022 at 1:19 PM

    Change the above CSS word "capitalize" to "uppercase" and it will change all input characters to capitals automatically!