Page 1 of 1

Multline Textfield without scroll-bar

Posted: 19 Nov 2020
by UDRO
Hello,

I use a multiline-textfield in a form. In display-mode all text lines are visible. In edit-mode only a few text lines are visible and the users have to scroll through the text.

Is there any way to display the whole text in the field without scroll-bar?

Regards UDRO

Re: Multline Textfield without scroll-bar

Posted: 20 Nov 2020
by mnikitina
Hello UDRO,

You can increase the height of the Multiline text field using CSS.

First, give the field a CSS class, like this:
Image

Then, add the following code to CSS editor:

Code: Select all

.multiline textarea {
    height: 1500px !important;
}