[Solved] Text is failing to wrap [closed]

[ad_1]

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

[ad_2]

solved Text is failing to wrap [closed]