How can I increase the width of the check box labels?

  • MBWHS
    Asked on August 20, 2016 at 6:54 AM

    HI

     

    I want to increase the length of the check box labels so they go across the page in a single line as opposed to wrapping over to two lines.

     

    I hope this makes sense?

     

    thanks

     

    Katie

  • Jan
    Replied on August 20, 2016 at 11:22 AM

    Please try inserting this custom CSS code in order to fix the width of the checkbox label.

    .form-input-wide {
    width: 100% !important;
    max-width: 100% !important;
    }

    .form-checkbox-item {
    width: 100% !important;
    max-width: 100% !important;
    }

    Here's a guide on How-to-Inject-Custom-CSS-Codes.

    If you need any help, let us know. Thank you.