I am working with the FCKeditor , can somebody tell me how i can set up the width and height of the editor?! http://www.realranker.com/facts in all the examples i found out at that small size...
First create an object for FCKeditor Then assign required height and width to object properties In javascripts ========== var oFCKeditor = new FCKeditor( 'FCKeditor1' ) ; oFCKeditor.BasePath = sBasePath ; oFCKeditor.Height = 300 ; oFCKeditor.Width = 500 ; oFCKeditor.Create() ; In PHP ===== $oFCKeditor = new FCKeditor('FCKeditor1'); $oFCKeditor->BasePath = 'fckeditor/'; $oFCKeditor->Width = '100%' ; $oFCKeditor->Height = '250' ; $oFCKeditor->Create();