How can I disable textarea resize on a form?

I added a form element with a field for textarea. I do not see an option to disable the resize feature.

Hey @mark-h,

you can use the form’s custom CSS area:

%root% textarea {
  resize: none;
}

Best,

André

1 Like