How can I hide the * character of a required field?

  • Javidosmanli
    Asked on April 13, 2015 at 12:00 PM

    Hi

    How

     

    Hi,

    I would like to delete "Required" Sign in first page only... Only sign itself, not function and only in First page..


    Thank you

     

    How can I hide the * character of a required field? Image 1 Screenshot 20

  • Javidosmanli
    Replied on April 13, 2015 at 4:48 PM

    No  did not understand my point,

    MY  point was = I want this function not deleted, I Just want to hide the Sign " * " this one to be hide, but only in first page.. on other page want it leave as it is..

    thank you

  • raul
    Replied on April 13, 2015 at 5:43 PM

    If you want to hide that specific character you need to inject the following CSS code in your form.

    #label_19 { display: none; }

    This will hide the * character of that field, but it will still be set as required.

    How can I hide the * character of a required field? Image 1 Screenshot 20

    Let us know if this is what you're trying to accomplish.

  • Javidosmanli
    Replied on April 13, 2015 at 6:40 PM

    Thank you it was helpful,

    one more quick question, it is applicable to other forms also ?
    Because we have different forms for your other website from different account and we would like to the same action for our different form.

    So maybe is there general guide how to do it.. we will do it ourselfs for other forms..

    thank you

  • Ashwin JotForm Support
    Replied on April 14, 2015 at 12:53 AM

    Hello Javidosmanli,

    No it is not applicable to other forms.

    Since you wanted to hide the required "*" only in your first page, field specific css code is required to hide it. The custom css code shared by my colleague is specific to your form.

    If you want to hide all the required "*" from your form but still want to retain the required field validation, you can inject the following custom css code:

    span.form-required {

      display: none;

    }

    The following guide should help you on how to inject custom css code:  http://www.jotform.com/help/117-How-to-Inject-Custom-CSS-Codes 

    Hope this helps.

    Do get back to us if you have any questions.

    Thank you!