如何手动更改我的 CDEditor 的边框和背景样式(颜色、视图...)?

How to change the borders and background styles (color, views...) of my CDEditor manually?

我管理一个网站,出于某些原因我使用 CDEditor。我想使CDEditor的设计适应网站设计,为此,我下载了CDEditor并尝试编辑一些源文件。

例如,我尝试编辑 contents.css,但它只帮助我改变了文本颜色和字体大小,但没有帮助我改变我也想要的背景颜色或边框颜色。

我还尝试在.../ckeditor/skins/editor.css 中编辑边框(或背景)属性,但没有任何反应。

现在我不知道该怎么办, 请帮忙!

感谢您的意见,我刚刚通过阅读本教程找到了解决问题的办法:

http://o7planning.org/web/fe/default/en/document/640241/ckeditor-tutorial

它有很多很棒的提示和技巧来自定义 ckeditor。 例如,要更改背景颜色,我们可以使用:

CKEDITOR.replace( 'textarea_id', {
    uiColor: '#14B8C4'
});