Default value of Automatically growing text area

0
I want to modify the default no of rows for automatically growing text box?  how i can do?
asked
1 answers
2

You can use css to set a minimal height:

First add a class to your textArea (in the properties), e.g. heightTextArea

Add the following to your style sheet: 

.heightTextArea textarea {
    min-height: 100px;
}

Of course, you can set this value to whatever you want.

You can find the stylesheets in your project directory > theme > styles

answered