在我的Joomla 3.3.0安装中,我尝试在JCE编辑器(2.3.4.4)中编写自定义css规则。我已经禁用了'html过滤',现在这是可能的。
所以当我写下这样的东西时:
<p>test</p>
<style>#t123{color:red}</style>
<div id="t123">red font</div>
我正确地获得了所需的输出。但是当我尝试再次编辑html并在style
标记中进行一些更改时,标记丢失了。我只能看到:
<p>test</p>
<div id="t123">red font</div>
如何配置编辑器以在编辑时显示style
标记?
由于
答案 0 :(得分:1)
您需要在两个位置禁用过滤。一个是Global Configuration -> Text Filtering
,另一个是JCE Editor Profiles -> Plug-in Parameters -> Media Support
。
答案 1 :(得分:0)
我的问题的答案是在Allow CSS
Components > JCE Editor > Editor Profiles > Editor Parameters > Advanced
选项
感谢@Apurv给我一个关于在哪里寻找的提示