我正在使用CKEditor
,我希望hide a button
保留这些功能。换句话说,我想隐藏图像按钮,同时保持显示所有现有图像
我的页面
我尝试使用config.js
文件:
- config.removeButtons = 'Image';
- config.removePlugins = 'elementspath,image';
但是我的html页面中的所有现有图像都消失了。 我在Table按钮上遇到了同样的麻烦。
答案 0 :(得分:0)
使用CSS:
.cke_button__image, .cke_button__table {
display: none !important;
}