sorry for being such a plonker but I'm a bit new and this is doing my 'ed in.

I'm using cakephp and I've got a form which uses ckeditor as the textarea. I include the javascript file and jquery and then simply put:

echo $this->Form->input('Campaign.story',array('rows'=>'5', 'cols'=>'15','class'=>'ckeditor'));

in a view file to call the editor. This causes the ckeditor to appear ok but I can't get it to the size I want it. No matter what I change the above to I can't get it to be the proper size. As soon as I remove the class it sizes properly.

The above makes this:

<div class="input textarea">
    <label for="CampaignStory">Story</label>
    <textarea name="data[Campaign][story]" rows="5" cols="15" class="ckeditor" id="CampaignStory" ></textarea>
</div>

I've tried using css to make it wider like this:

#CampaignStory{width:400px;}

but that doesn't work either.

link|improve this question
I think we need to see the ckeditor code that attaches the editor. Have you looked at the ckeditor docs for a width option? – Dunhamzzz Sep 20 '11 at 15:09
Hi there, heres the link to the configuration bit of the editor docs.cksource.com/CKEditor_3.x/Developers_Guide/… There seems to be loads of options but I can't spot anything to do with size – Wayne Phack Sep 20 '11 at 15:24
It's right at the bottom here. It' just width. I can't show you how to use it as you haven't posted the ckeditor init code. – Dunhamzzz Sep 20 '11 at 15:31
I really appreciate your help with this :) I'm not sure what you mean about the init code. I followed this (short) tutorial amilan.wordpress.com/2010/01/28/ckeditor-integration-in-cakephp to install it. – Wayne Phack Sep 20 '11 at 15:44
Is this maybe what you're talking about as init code? docs.cksource.com/CKEditor_3.x/Developers_Guide/Toolbar I've been staring at this and the link you posted trying to figure out what to do but I'm none the wiser. – Wayne Phack Sep 20 '11 at 16:03
feedback

2 Answers

Set

config.width = '1000px';  // or whatever 

in /ckeditor/config.js

The editor area replaces the textarea. Changing cols / rows of the underlying textarea won't change ckEditors interface.

will

link|improve this answer
feedback

You can not specify width and hieght in your input and expect work fine with CKEDITOR.Beacause it wont adjust height and width of CKEDitor

To specify height and width of of a CKEDiTOR

field use this code in your css

.cke_contents{
height: 400px !important;
width: 550px !important;
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.