Letra Maiuscula

  • Bichara_Advogados
    Perguntado em 18 de março de 2024 às 14:37

    Como faço para a inserção de dados no formulário pelo usuário ser em caixa alta (maiúscula)?


  • Jovanne Jotform Support
    Respondido em 18 de março de 2024 às 16:46

    Hi Bichara_Advogados,

    Thanks for reaching out to Jotform Support. Unfortunately, our Portuguese Support agents are busy helping other Jotform users at the moment. I'll try to help you in English using Google Translate, but you can reply in whichever language you feel comfortable using. Or, if you'd rather have support in Portuguese, let us know and we can have them do that. But, keep in mind that you'd have to wait until they're available again.

    Now, let me help you with your question. To have your form fillers fill out in capital letters can be done through CSS code. Here is the CSS code that you need to add to your form:

    .form-textbox {
       text-transform: uppercase;
    }

    Let me show you how to add the CSS code to your form:

    • In your Form Builder, click the Form Designer (blue paintbrush icon).
    • Go to the Styles tab, scroll down then paste the CSS code above.

    Letra Maiuscula Image 1 Screenshot 20

    You can also check my cloned form as a reference.

    Give it a try and let us know how it goes.

  • Bichara_Advogados
    Respondido em 19 de março de 2024 às 11:36

    O campo e-mail eu nao quero que seja maiúscula, como fazer?

  • Jovanne Jotform Support
    Respondido em 19 de março de 2024 às 12:29

    Hi Bichara_Advogados,

    You can insert the custom CSS code below to set the email field in lowercase format:

    /*Make email fields in lowercase*/
    input[type="emai"] {
      text-transform: lowercase !important;
    }
    /*ends here*/


    Give it a try and let us know if you need any help.