How do I change the word wrap on the questions on my form?

  • lwilhelmi
    Asked on September 25, 2017 at 11:17 AM

    I can't find an option to change the word wrapping formatting on the questions on my form.

  • Jan
    Replied on September 25, 2017 at 12:25 PM

    Are you referring to the Question Labels or to the Text tool?

    How do I change the word wrap on the questions on my form? Image 1 Screenshot 20

    Please provide more details about the issue you are having so that we can assist you properly. If possible, please provide a screenshot.

    Thank you for your cooperation.

  • lwilhelmi
    Replied on September 25, 2017 at 4:05 PM

    The question label

  • aubreybourke
    Replied on September 25, 2017 at 4:56 PM

    It is possible to format the question label using CSS. 

    Like this (to break a long word):

    .form-label.form-label-top {
        word-wrap: break-word;
    }

    Or like this (to break at allowed break points):

    .form-label.form-label-top {
        word-wrap: normal;
    }

    Hope that helps