How to disable resizable textarea in Drupal?



Putting following code in template.php does that.

function phptemplate_textarea($element)
{
$element['#resizable'] = false ;
return theme_textarea($element) ;
}


COMMENTS


Hi,
You need a little more than this, with CSS3 capable browsers becomming more common. The "textarea" element is CSS "resizable" by default. Ever asked yourself where the "corner grippy" came from?
Disable CSS resizing with:
textarea{
resize: none;
}

Regards,

Beddengoed

Your solution is fine for D5 but in D6 it compleely removes the body text area.