Move 'required asterisk' beside the option

  • rbell1
    Asked on September 29, 2017 at 9:28 PM

    Wondering if we can move the "*" to after "I agree" rather than the line above.

    It is at the bottom of this form:

    https://form.jotform.co/72609097041860

    Thanks

    Jotform Thread 1261799 Screenshot
  • Kiran Support Team Lead
    Replied on September 29, 2017 at 11:36 PM

    Instead of moving the existing asterisk, you may consider adding a new asterisk beside the text 'I agree' displaying in red color. Please use the following code to add as an option in the Multiple choice field.

    I agree <span style="color:red">*</span>

    Move required asterisk beside the option Image 1 Screenshot 30

    Since the field should be a required field, let us hide the asterisk symbol on the label by injecting the following CSS code to the form.

    #label_77 {

    visibility: hidden;

    }

    After making the changes above, the field should be displayed as shown below:

    Move required asterisk beside the option Image 2 Screenshot 41

    Thanks!