Search code examples
asp.netcssckeditor

maximize textarea font size for ckeditor


I have spent hours trying to maximize textarea font size for ckeditor 4.0.1 (revision d02739be4b) with no use. I have made all tricks and tweaks which are :

1- editing skeditor/skin.moono/editor.css

2- editing ckeditor/contents.css

3-changing font size from property window

After all these attempts the font is still small.


Solution

  • Had similar issue in CKEditor 5 (but with changing the height of the text area), I finally was able to solve it according to this: How to set the height of CKEditor 5 (Classic Editor) After inspecting the text area I added these lines to css:

        .ck-editor__editable_inline {
        min-height: 400px;
    }
    

    I Hope this would help.