Canceling the stars on the label of CheckBoxes

  • tctrust
    Asked on December 11, 2016 at 4:03 PM

    How canceling the stars on the label of all required fields?

    Canceling the stars on the label of CheckBoxes Image 1 Screenshot 20

  • Chriistian Jotform Support
    Replied on December 11, 2016 at 9:07 PM

    I understand that you want to remove all the stars on the required fields. To do this, simply inject the custom CSS code below.

    .form-required {

        display: none !important;

    }

    Canceling the stars on the label of CheckBoxes Image 1 Screenshot 20

    Please let us know if you need further assistance.
    Regards.

  • tctrust
    Replied on December 12, 2016 at 8:28 AM

    But this code will affect elimination only asterisks or the total label?

    Because I have several fields required with the label.

    Canceling the stars on the label of CheckBoxes Image 1 Screenshot 20

  • Özlem JotForm Developer
    Replied on December 12, 2016 at 8:54 AM

    Hi,

    According to my understanding, you want to remove asterisk only of CheckBox field in your form, not asterisks on all required fields.

    Canceling the stars on the label of CheckBoxes Image 1 Screenshot 20

     

    #label_172 span.form-required {

        display:none;

    Please copy above custom CSS code and inject into your form. This is the guide about how to inject: How-to-Inject-Custom-CSS-Codes

    In this case, only asterisk on checkbox field is removed. 

    If it is not the issue, please feel free to let us know.

    Thank you.

  • tctrust
    Replied on December 12, 2016 at 9:09 AM

    hi,

    My question is: How canceling the stars on the label of all required fields?

  • Helen
    Replied on December 12, 2016 at 9:35 AM

    Hi,

    Thank you for contacting us.

    You can disable the asterisks on the label of all required fields. Please follow these steps:

    1. Click "Design" button at the top of the page on your form.

    Canceling the stars on the label of CheckBoxes Image 1 Screenshot 50

    2. Add below CSS codes into "Inject Custom CSS" field on Inject CSS page.

    .form-required {

      display: none !important;

    }

    Canceling the stars on the label of CheckBoxes Image 2 Screenshot 61

    Everything works properly on my side, as you can see below:

    Canceling the stars on the label of CheckBoxes Image 3 Screenshot 72

    If you want to cancel required fields, in other words, if you want to your all fields are not required, you must be off "required" for your all field.

    Select your field and click "Required" button for to cancel it.

    Canceling the stars on the label of CheckBoxes Image 4 Screenshot 83

    If you have any questions or issue, feel free contact us.

  • tctrust
    Replied on December 12, 2016 at 11:37 AM

    Thank you all.