How to stop the labels from wrapping so that they are presented in a single line?

  • swalker286
    Asked on April 10, 2015 at 12:33 PM
    2.  I cannot get the labels to stop wrapping even when I choose ot align top.  I would like the label/question to continue on one line of text not multiple when the space is available.  I cannot find the correct option to correct this formatting issue
  • Ben
    Replied on April 10, 2015 at 12:50 PM

    There is one CSS code that is causing this for you:

    .form-label {
        width: 30% !important;
    }

    If you add this code it will work:

    label.form-label {
        min-width: 60%;
    }

    You can add the code by following the steps here: Inject Custom CSS Codes

    When you add it, please add it at the bottom of any other code in there.

    Do let us know how it goes.

  • CAREshelter
    Replied on October 19, 2015 at 12:40 PM

    I was searching for a solution for the same issue and this worked for me. Thanks!