How can I change the width of the checkbox description?

  • JFedGMW
    Asked on January 3, 2017 at 10:45 AM

    I've managed to add CSS to widen the area for the checkbox label, but I've been unable to change the width of the checkbox description. Can you help? Thanks

    Form Title: 2017 Challah bake Registration Form

    Jotform Thread 1024130 Screenshot
  • David JotForm Support
    Replied on January 3, 2017 at 11:51 AM

    I checked your form and it looks like you have already extended the width of your checkbox options.  If you would like to further customize the width, you can add  the following code to your form:

    https://www.jotform.com/help/117-How-to-Inject-Custom-CSS-Codes

    #cid_47, #cid_39, #cid_40, #cid_41, #cid_42 {
        width : 400px;
    }

    Adjusting the width value until the options show to your liking.

     

  • JFedGMW
    Replied on January 3, 2017 at 1:22 PM

    Yes, I cracked the code for specific questions. Is there a line of code that I could use to adjust the width for all of the checkbox questions?

  • David JotForm Support
    Replied on January 3, 2017 at 2:18 PM

    The following will change all the checkbox option widths:

    .form-checkbox-item {
       width: 350px;
    }