jeboy25 wrote:Hi! how can I resize the height of the editor?
If you want to retrieve the resulting HTML instead of outputting it directly to the browser (for example if you're using it in a template engine such as Smarty), you can call the "CreateHtml" method instead:
$output = $oFCKeditor->CreateHtml() ;
To change the size of the editor in the page, insert the following code before calling the Create() or CreateHtml() methods:
$oFCKeditor->Width = '100%' ;
$oFCKeditor->Height = '200' ;
and just change the values to your needs.
Re: How to resize the editor?
Please see details here: http://wiki.fckeditor.net/Developer%27s ... ration/PHP
Good luck!
Re: How to resize the editor?
Re: How to resize the editor?
I was wondering this as well. Using the above PHP example, I tried putting the following code in my ASP:

oFCKeditor.Height = "700"
and leaving the width as the default, which was fine for me.
This seemed to work okay (obviously I used 700 to see if there was any difference, and there was).