Hey All, I am use fckeditor, but for PHP.
I am trying to do two things.
#1. Make the default skin office2003. When I edit the /fckeditor/fckconfig.js and line from the instruction manual to it, the skin doesn't change.
#2. The text box for typing is very small. I type two lines and then I have to scroll. What file must I edit and what variable to increase the height of the text area?
I am trying to do two things.
#1. Make the default skin office2003. When I edit the /fckeditor/fckconfig.js and line from the instruction manual to it, the skin doesn't change.
#2. The text box for typing is very small. I type two lines and then I have to scroll. What file must I edit and what variable to increase the height of the text area?

Re: Increase the size of typing box
I'm having the same problem as described in #1.
Has found why this is happening?
It's really strange, I even deleted the skins/default directory, replaced it by the skins/silver and it still appeared as default layout!
Any help appreciated!
Christophe
Re: Increase the size of typing box
Re: Increase the size of typing box
http://wiki.fckeditor.net/Developer's_G ... tion/Skins
http://wiki.fckeditor.net/Developer's_G ... ration/PHPOther Info
Wiktor Walc
CTO, CKSource - http://cksource.com
--
Follow CKEditor on: Twitter | Facebook | Google+
Re: Increase the size of typing box
If I don't/can't use PHP as per the sample provided (I'm using the simple TextArea Replacement method), is there a way of increasing the default height of the editor window, say via the config file or other methods?
Regards,
Rosti.
Re: Increase the size of typing box
Wiktor Walc
CTO, CKSource - http://cksource.com
--
Follow CKEditor on: Twitter | Facebook | Google+
Re: Increase the size of typing box
I just want to WIDEN the textarea a bit and need to know what file controls that.
Re: Increase the size of typing box
Here's an excerpt of my code:
<?php $oFCKeditor = new FCKeditor('FCKeditor1'); $oFCKeditor->BasePath = './fckeditor/'; $oFCKeditor->Config['Height'] = 700; $oFCKeditor->Config['FullPage'] = true; $oFCKeditor->Config['ToolbarStartExpanded'] = false; $oFCKeditor->Value = $value; $oFCKeditor->Create(); ?>I also increased the size of the <td> element in the table to 700 pixel height but no matter what numeric value I set in Height, the FCKeditor is always displayed exactly the same...
Re: Increase the size of typing box
<?php $oFCKeditor = new FCKeditor('content_u'); $oFCKeditor->BasePath = '/fckeditor/'; $oFCKeditor->Height = 500; $oFCKeditor->Create(); ?>It worked for me.
Re: Increase the size of typing box
Re: Increase the size of typing box