[Solved] Text is failing to wrap [closed]


There’s this CSS rule being applied:

.form-sub-label-container {
    white-space: nowrap;
}

To avoid that, either delete it (if you can), or overwrite it with the following rule in your custom CSS:

.form-sub-label-container {
    white-space: normal;
}

1

solved Text is failing to wrap [closed]