Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
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
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.