any idea how to make a text area box of a form non-resizable?
It should be non-re-sizable. Otherwise, I’m misunderstanding your problem. Are you using Safari and talking about that textarea resize?
yes that’s correct.
Try
textarea {
resize:none;
}
perfect, thanks for the help.