If you look at the page you open to run FCKeditor you should see a section of code like this. At least in the PHP setup this is how it works. Add these two lines
$oFCKeditor->Width = '100%'; //You can change the width of the editor to whatever you want here
$oFCKeditor->Height = '490'; //You can change the height of the editor to whatever you want here
You can see how it looks added below.
<?php
include("FCKeditor/fckeditor.php") ;
?>
<html>
<head>
<title>FCKeditor - Sample</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<form action="savedata.php" method="post">
<?php
$oFCKeditor = new FCKeditor('FCKeditor1') ;
$oFCKeditor->BasePath = '/FCKeditor/';
$oFCKeditor->Value = 'Default text in editor';
$oFCKeditor->Width = '100%'; //You can change the width of the editor to whatever you want here
$oFCKeditor->Height = '490'; //You can change the height of the editor to whatever you want here
$oFCKeditor->Create() ;
?>
<br>
<input type="submit" value="Submit">
</form>
</body>
</html>
Re: resize FCK EDITOR
If you look at the page you open to run FCKeditor you should see a section of code like this. At least in the PHP setup this is how it works.
Add these two lines
You can see how it looks added below.
There is also a decent video tutorial that shows an install and has the resize option
it's at http://www.easykiss123.com?id=22
Re: resize FCK EDITOR