How to convert upper case to lower case?

  • cobertura
    Asked on April 8, 2019 at 2:41 PM

    Hello,

    Como hago para que un campo texto que ingresa,  siempre sea minusculas. 

    Thanks.


  • Nick_So
    Replied on April 8, 2019 at 4:28 PM

    If you are referring to keep the text that user enters in the form in the lower case, you can add the below CSS code to your form:

    .form-textbox{

    text-transform:lowercase;

    }

    Here is a guide about how to enter CSS code to your form: How-to-Inject-Custom-CSS-Codes

    Let me know if you have any questions or need any further help.