Does anyone have a clue as to how to enable ONLY vertical resizing?
I discovered the following "bug" that achieves the desired result in FF,Safari,Opera and Chrome BUT NOT in IE
I discovered the following "bug" that achieves the desired result in FF,Safari,Opera and Chrome BUT NOT in IE
CKEDITOR.replace('idoftextarea',{
resize_maxWidth:'%',
}
);

Re: How to enable Vertical Resizing ONLY
viewtopic.php?f=11&t=15408
Re: How to enable Vertical Resizing ONLY
CKEDITOR.replace('idoftextarea',{ width: 600, resize_maxWidth: 600, resize_minWidth: 600 } );Just change "600" to whatever width you're actually using.