Hide resize in textarea - Forum

Forum Navigation
You need to log in to create posts and topics.

Hide resize in textarea

Hi!, i cant find in properties or style in the textarea how to set resize:none to don't display the resize.

@emmanuel-fernandez

a) Navigate to Project >>> Properties >>> Styles

b) Enter ...

.noResize {
resize: none;
}

c) apply this class (i.e. noResize) to any/all textarea objects that you don't want resized ... i.e. Properties >>> Advanced >>> css-class

Note that you can limit resizing in a horizontal or vertical direction only with ...

resize: horizontal;
resize: vertical;

CDY@44 has reacted to this post.
CDY@44

Thank's!!!