Is there a way to make the default cleditor window taller?
nashira
New
At the moment it's quite small and a bit awkward, I've been looking through it's code but I may have missed where it sets it's height because I can't work it out.
Tagged:
0
Best Answer
-
rahulparekh
New
422 said:
I wouldnt do that, perhaps leave as is. And in css do this..cleditor {min-height:500px;}
Yeah, this works too. Although the classname is .cleditorMain I think.
5
Answers
Yes, I just managed to do it quite easily.
Go to plugins/cleditor
Open default.php
Go to line no 101 and find
ed = jQuery(this).cleditor({width:"100%", height:"100%"})[0];Replace
height:"100%"with anything in pixels.for example
height:"500px"I wouldnt do that, perhaps leave as is. And in css do this.
.cleditor {min-height:500px;}
There was an error rendering this rich post.
Yeah, this works too. Although the classname is .cleditorMain I think.