How to fix the fix that only capital letters can be entered

  • bhagyashreeb
    Asked on October 7, 2017 at 3:50 PM

    Dear Team,

    Thanks for your assistance.

    I have one more query that how to fix that only capital letters are accepted for field Name.

  • jonathan
    Replied on October 7, 2017 at 7:07 PM

    You can add this CSS codes to make the first letter of Textbox input capitalize.

    .form-textbox {

        text-transform: capitalize !important;

    }

    How to fix the fix that only capital letters can be entered Image 1 Screenshot 20

    Please take note that this is only affecting the input style the user see on the form. The actual data (in submission) will still appear the way the user actually inputted the data. i.e. if the user uses small letters when typing, the actual data will be in small letters also.

    If you want the same capitalization appear in the Email content, you can do it also.

    User guide: Capitalizing the First Letter of Every Field Value on Email




  • jonathan
    Replied on October 7, 2017 at 7:09 PM

    Just in case what you need instead is to have all letters in UPPER case, then change the CSS codes to this

    .form-textbox {

        text-transform: uppercase !important;

    }


    All letters of Textbox field input will be in caps.