More field capitalization rules

  • trackleaders
    Asked on May 18, 2016 at 6:58 PM

    You gave me the below for forcing capitalization of the first letter in a field, but how do I ensure *only* first letter capitalization? I want to simultaneously disallow all caps entries. The Euros completing our forms love to enter their names in all caps. Thank-you.

    "You can inject the following CSS code into your form and it will take care of for you.

    #first_40, #last_40{

        text-transform :capitalize!important;

    } "

  • David JotForm Support Manager
    Replied on May 18, 2016 at 10:55 PM

    Please try the following code: 

    #first_40 {

        text-transform: lowercase;

    }

    #first_40::first-letter {

        text-transform: uppercase;

    }

    Let us know if that helps.