编辑栏图片按钮文字变红色
1,修改位置:/template/default/forum/post_editor_body.htm2,修改目的:使编辑器的图片按钮下的文字,加粗,变红
3,修改过程: post_editor_body.htm ,line64,在<a> 标签内添加内置样式 :style="color:red;font-weight: 700;"
修改前:
<a id="{$editorid}_image" title="{lang e_image_title}" menupos="00" menuwidth="600">{lang e_image}</a> 修改后:
<a style="color:red;font-weight: 700;" id="{$editorid}_image" title="{lang e_image_title}" menupos="00" menuwidth="600">{lang e_image}</a>4、最终效果如图:
页:
[1]