How to capitalize entries?

  • WSMC
    Asked on March 29, 2015 at 4:09 AM

    How do you force capitalise some entries please?

     

  • BJoanna
    Replied on March 29, 2015 at 5:27 AM

    You can force capitalize some entries by Injecting Custom CSS. To do that you need to find field ID and to apply this css code to id of filed: {text-transform:capitalize;}

    Here is the link of mine form http://form.jotformpro.com/form/50872019789972   

    Inside of mine form I have add this code that apples on First Name field

    #input_32

    {text-transform:capitalize;}

    If you do not know how to find fields ID and apply this code, please provide us the ID of your form and tell us on which fields you want to apply this  CSS rule. 

    Hope this will help. Let us know if you need further assistance. 

  • WSMC
    Replied on March 29, 2015 at 5:38 AM

    Thanks, I'll look into it

  • Jan
    Replied on March 29, 2015 at 10:41 AM

    On behalf of BJoanna, you're welcome. Let us know if you're having issues with it. 

    Thank you.

  • WSMC
    Replied on March 1, 2016 at 4:47 PM

    Hi, Could you apply this to field ID 9 on form https://form.jotform.com/53181449748970 please? Thanks Regards Ben

  • Kevin Support Team Lead
    Replied on March 1, 2016 at 6:35 PM

    You only need to inject this CSS code:

    #input_9 {

        text-transform: capitalize;

    }

     

  • WSMC
    Replied on March 2, 2016 at 2:07 AM

    Hi, Just done that and it didn't work Regards Ben

  • BJoanna
    Replied on March 2, 2016 at 3:37 AM

    Do you wish to capitalize entries on your text area field Driver's Emergency contact?

    How to capitalize entries?  Image 1 Screenshot 20

    To achieve that please add this CSS code: 

    #input_7 {

        text-transform : capitalize;

    }

    In case that you wish to capitalize entries in all text area field you can add this CSS code:

    .form-textarea {

        text-transform : capitalize;

    }

    Hope this will help. Let us know if you need further assistance.