Can we disable Text area resizing?

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

You need custom CSS:

http://stackoverflow.com/questions/5235142/how-to-disable-resizable-property-of-textarea

2 Likes

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;
}
3 Likes

This topic was automatically closed after 60 days. New replies are no longer allowed.