Hello, well i want to use fckeditor in a web page im creating, and i managed to make it work, the only problem is that is too small, i want to be able to change the width and the height of the fckeditor.
i managed to change the width by using a div container and changing its width.. but i cant change the height, how do i do that?. is there a better way?.
i managed to change the width by using a div container and changing its width.. but i cant change the height, how do i do that?. is there a better way?.

Re: fckeditor change width and height
<? require_once($_Server['DOCUMENT_ROOT'] . 'lib/FCKeditor/fckeditor.php'); $fck = new FCKeditor('FCKeditor1'); $fck->BasePath = '/lib/FCKeditor/'; $fck->Height = 550; $fck->Width = 800; $fck->Create(); ?>Re: fckeditor change width and height
I actually found out by checking the fckeditor.php file after i posted this, but thanks anyway for the quick response!.
Atte:
Fernando Garza