Capitalize

  • trssl
    Asked on December 30, 2016 at 2:09 PM
  • Jan
    Replied on December 30, 2016 at 5:00 PM

    My understanding is that you want to force the data entered in the fields to be capitalized or uppercase. If that is correct, please use the CSS code below:

    Capitalize the first letter of each word:

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

    Here's the result:

    Capitalize Image 1 Screenshot 30

    Make all letters in uppercase format

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

    Here's the result:

    Capitalize Image 2 Screenshot 41

    Here's a guide on How-to-Inject-Custom-CSS-Codes.

    Hope that helps. Thank you.