I'm trying to change the height of sample02.html in /editor/_samples/html/. Changeing the height in the textarea style does not have any effect on the editor size.
Version is 2.0 FinalCandidatePreview.
What should I do to change the height? Is there any trick?
Thank you for answering.
Version is 2.0 FinalCandidatePreview.
What should I do to change the height? Is there any trick?
Thank you for answering.
RE: Unable to set height with textareaReplace
in the script where you declare the thing, just add one line:
oFCKeditor.Height = '800'
var oFCKeditor = new FCKeditor( 'myTextadrea' ) ;
oFCKeditor.BasePath = './editor/' ;
oFCKeditor.Height = '800'
oFCKeditor.ReplaceTextarea() ;
Mind the capital!