Hello Folks,
I am rookie about FCK Editor. I used it on textareas in my PHP script. But, the Editor toolbar is so big that shows me a very small space to put values or text. I want to increase the rows or the textarea. I tried it by old way adding rows= and cols= syntax to textarea tag. But, doesn't work. Please let me know how to do so?
Regards,
I am rookie about FCK Editor. I used it on textareas in my PHP script. But, the Editor toolbar is so big that shows me a very small space to put values or text. I want to increase the rows or the textarea. I tried it by old way adding rows= and cols= syntax to textarea tag. But, doesn't work. Please let me know how to do so?
Regards,

Re: Need to add more rows and columns
<?php $oFCKeditor = new FCKeditor('FCKeditor1') ; $oFCKeditor->Width = 600; $oFCKeditor->Height = 500; $oFCKeditor->BasePath = '/fckeditor/' ; $oFCKeditor->Value = '<p>This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</p>' ; $oFCKeditor->Create() ; ?>