How do I unbold a question in a long text entry?

  • alaska93
    Asked on June 25, 2017 at 1:09 AM
  • Kiran Support Team Lead
    Replied on June 25, 2017 at 3:09 AM

    I understand that you want to display the form labels without bold letters. If so, you may inject the following CSS code to your form which would apply for all the labels.

    .form-label {

        font-weight: normal;

    }

    If you want to apply to any specific field, you may find the field ID by following the guide How-to-Find-Field-IDs-and-Names and apply the same code as below:

    #field_id {

        font-weight: normal;

     

     }

    Hope this information helps!