$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
<?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
<?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>http://www.easykiss123.com?id=22
Re: resize FCK EDITOR