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.
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