disable textarea resize??
Permalink
Hi folks. I have a basic form block with a textarea in it, and it has that little resize handle in the bottom right corner - how do I disable it? I don't want users grabbing it and resizing it to mess up the form.
Thanks.
Thanks.
In your CSS use this (for textareas):
textarea {
resize: none;
}
I can't guarantee that this will work for other browsers. It's not a setting in Concrete5, nor is it something Concrete5 can manage. You'll need to do a little research on Google, but here's some links I found:
http://www.electrictoolbox.com/disable-textarea-resizing-safari-chr...
http://brett.batie.com/website_development/no-resize-textarea-in-ch...