JCE编辑器工具栏图标无法正确加载

时间:2014-08-07 18:17:27

标签: css joomla editor toolbar jce

我有一个Joomla! 3.3.3我正在使用JCE编辑器。我的问题是编辑器没有显示工具栏上按钮的图标。使用Firebug,我意识到这是所有主题的css路径中的一个问题。

enter image description here

enter image description here

在这种情况下,我正在使用Classic。出现在Firebug代码中的css是:

.classicSkin .mceIcon {
   background: url("/campusbaixada/web/sites/dev01.unifesp.br/components/com_jce/editor/tiny_mce/themes/advanced/img/icons.gif") in the repeat scroll 20px 20px RGBA (0, 0, 0, 0);
}

如果我改为:

.classicSkin .mceIcon {
   background: url ("/ components / com_jce / editor / tiny_mce / themes / advanced / img / icons.gif") no-repeat scroll 20px 20px rgba (0, 0, 0, 0);
}

工具栏的一部分将重新出现。

所以我要进入服务器上的JCE文件夹(components / com_jce / editor / tiny_mce / themes / advanced / skins / classic)并更改

的代码
.classicSkin .mceIcon {
   background: url (img ../../ / icons.gif) no-repeat 20px 20px;
}

.classicSkin .mceIcon {background: url (/components/com_jce/editor/tiny_mce/themes/advanced/img/icons.gif) no-repeat 20px 20px;}

现在我的问题:

我尝试将其固定在我的模板cuz的默认css文件中,每次更新组件时,它都会丢失我的设置,但无法使其正常工作。在他们的论坛上,除了没有这个问题,我必须付钱才能发表疑惑......任何人都可以帮助我吗?

1 个答案:

答案 0 :(得分:1)

以下解决方法对我有用:登录管理员。转到组件 - > JCE编辑器 - >全局配置。设置"压缩CSS"单击否,然后单击保存。