×
Close
Main navigation
Product navigation
Main content
CKEditor 4
Menu
Overview
Demo
Accessibility Checker
Add-ons
Documentation
Download
Pricing
Home
WYSIWYG Editors
CKEditor 4
CKEditor 5
Image upload
CKFinder
Easy Image
Collaboration
Comments
New
Track changes
New
Collaborative editing
Pricing
Case studies
New
Documentation
Help center
Blog
Contact us
The forum operates in
read-only
mode. Please head to
StackOverflow
for support.
Forums
CKEditor
Support
Last post
Thu, 10/02/2008 - 16:37
#1
darkling235
Joined:
17/09/2008
Posts:
5
How can I resize the editor
I want to make the editor bigger. It's too small and leaves a lot of empty space around it. Can anyone show me how to increase its size or resize it?
Thanks
Thu, 10/23/2008 - 01:09
#2
dxsmith
Joined:
23/10/2008
Posts:
3
Re: How can I resize the editor
I have a similar question, but I'd like to make it more narrow. I couldn't find any configuration property to do this.
Thu, 10/23/2008 - 01:52
#3
flodulv
Joined:
10/09/2008
Posts:
11
Re: How can I resize the editor
You can try to add this code to the fck code. (where you insert the code to display)
$oFCKeditor->Height = '100px';
$oFCKeditor->Width = '300px';
If you don't get this to work, you can make your own config file.
When using javascript to create a fck form, you need to write like this.
oFCKeditor.Height = '250px';
oFCKeditor.Width = '350px';
Thu, 10/23/2008 - 01:56
#4
dxsmith
Joined:
23/10/2008
Posts:
3
Re: How can I resize the editor
The first suggestion worked. Thank you very much.
Thu, 10/23/2008 - 10:02
#5
mtablado
Joined:
05/11/2007
Posts:
45
Re: How can I resize the editor
In addition, you have the FitWindow property.
Thu, 10/23/2008 - 10:36
#6
flodulv
Joined:
10/09/2008
Posts:
11
Re: How can I resize the editor
try this.
$oFCKeditor->Height = '100%';
$oFCKeditor->Width = '100%';
Twitter
Facebook
Facebook
Instagram
Medium
Linkedin
GitHub
Arrow down
Phone
Menu
Close icon
Check
Re: How can I resize the editor
Re: How can I resize the editor
$oFCKeditor->Height = '100px';
$oFCKeditor->Width = '300px';
If you don't get this to work, you can make your own config file.
When using javascript to create a fck form, you need to write like this.
oFCKeditor.Height = '250px';
oFCKeditor.Width = '350px';
Re: How can I resize the editor
Re: How can I resize the editor
Re: How can I resize the editor
$oFCKeditor->Height = '100%';
$oFCKeditor->Width = '100%';