(Possible duplicate: CKEditor - No toolbars)
I\'d like to create a CKEditor instance without a toolbar. I tried defining an empty toolbar to use in the instance\'s c
In CKEditor 5 the easiest way without changing configuration or editor behaviour is to hide the toolbar using CSS:
.ck.ck-editor__top { display: none; }