我正在使用N2 cms,它确实是一项工作, 我希望能够在Html Text编辑器中更改文本颜色,除此之外,它还包含所需的所有内容。
这很容易做到吗?
答案 0 :(得分:1)
转到你的css文件,放一个带有color属性的类。然后转到Html文本编辑器并参考此类。这是一些代码。
在样式表中:
.textColor
{
color:Red;
}
在Html文本编辑器中:
<h1 class="textColor"> the text is in red</h1>
修改强>
最佳方法
您可以通过将以下代码放在Web.config / n2 / edit标记中来启用tinyMCE上的forecolor
<tinyMCE enabled="true">
<settings>
<add key="theme_advanced_buttons1" value="bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,|,formatselect,fontselect,fontsizeselect"/>
<add key="theme_advanced_buttons2" value="cut,copy,paste,pastetext,pasteword,|,search,replace,|,bullist,numlist,|,outdent,indent,blockquote,|,undo,redo,|,link,unlink,anchor,image,cleanup,help,code,|,insertdate,inserttime,preview,|,forecolor,backcolor"/>
<add key="extended_valid_elements" value="hr[class|width|size|noshade],font[face|size|color|style],span[class|align|style],pre[class],code[class],iframe[src|name|class|style|frameborder]"/>
<add key="theme_advanced_disable" value="help,paste,emotions,iespell,styleprops"/>
<add key="relative_urls" value="true"/>
<add key="apply_source_formatting" value="true"/>
</settings>
</tinyMCE>