Hi,
I was wondering if there was a way to disable the resizing of the text area in forms?

I’m using the form in a two column mode and if the visitor resizes the field it messes up the design.
Thanks
Hi,
I was wondering if there was a way to disable the resizing of the text area in forms?

I’m using the form in a two column mode and if the visitor resizes the field it messes up the design.
Thanks
That makes the area impossible to resize:
http://vincent.polenordstudio.fr/snap/dzp9v.jpg
But you need to give it real dimensions.
Or this with CSS:
textarea {
resize: none;
}