Replace text tool: Wrap text when data is long

Hi,


When the text is too large, the input box is not wrapping.
I may be able to force in CSS but what do you recommend so it can dynamically wrap?

Please see attached screenshot.

Thanks.


Regards,


Leo

Hi Leo,


Yes, you can change it with such CSS code:
.doc_text_area_text {
overflow-y: auto !important;
overflow-x: auto !important;
max-width: 50px;
word-wrap: break-word !important;
}

The only thing that you should adjust is the max-width value.

Best regards.