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.

stretchrt
 
LucasAnderson replied on at Permalink Best Answer Reply
LucasAnderson
This is really a browser feature that you don't see in some of the older browsers. I know that for Chrome you can do the following:

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...
stretchrt replied on at Permalink Reply
stretchrt
Aahh thanks, didn't realise it was a browser issue. Will implement your solution for chrome at least and read up on other browsers when I get time :)