Can I make the input fields in uppercase?

  • criacaokronedesign
    Asked on July 26, 2016 at 10:11 AM
  • Jan
    Replied on July 26, 2016 at 11:32 AM

    Are you planning to force uppercase letters when typing in the form fields? If yes, then please insert this custom CSS code:

    .form-textbox, .form-textarea {
    text-transform: uppercase !important;
    }

    If you're planning to make all texts in the uppercase format, use this code:

    .form-all {
    text-transform: uppercase !important;
    }

    Here's a guide on how to inject custom CSS. If you have any questions, let us know. Thank you.