Adding Headlines (or bold titles) to a Checkbox list?

  • riversconservatory
    Asked on December 5, 2016 at 3:27 PM

    I'm wondering if it's possible to have a check box list of items with a few headlines dividing the items? Or is there a widget that can have headings and subitems?

     

     

  • David JotForm Support Manager
    Replied on December 5, 2016 at 6:10 PM

    This is possible, you can hide the check box of the label item in order to make it a title, here is the CSS example you can inject: https://www.jotform.com/help/117-How-to-Inject-Custom-CSS-Codes 

    #input_30_0{

    display: none;

    }

    #label_input_30_0{

        font-weight: bold;

        font-size: 25px;

    }

    Result:

    Adding Headlines (or bold titles) to a Checkbox list? Image 1 Screenshot 20

    Please let us know which items you would like to turn into headings or bold titles, so we can provide you the custom code to accomplish it.

  • riversconservatory
    Replied on December 6, 2016 at 11:47 AM

    Hi thanks -- the three headers I need have asterisks indicated on this form

    https://www.jotformpro.com/form/63144951425960

     

  • David JotForm Support Manager
    Replied on December 6, 2016 at 12:54 PM

    Please inject the following code in your form: https://www.jotform.com/help/117-How-to-Inject-Custom-CSS-Codes 

    #input_30_0,#input_30_5,#input_30_13{

    display: none;

    }

    #label_input_30_0,#label_input_30_5,#label_input_30_13{

        font-weight: bold;

        font-size: 25px;

    }

    Result:

    Adding Headlines (or bold titles) to a Checkbox list? Image 1 Screenshot 20

    If you need to reduce the font size, simply reduce the number in the following line: font-size: 25px;

    Let us know if you need more help.