对于Magento中的CMS页面编辑器,我想在tinyMce编辑器中更改H标签的格式。我希望像H1标签,它是红色,粗体,字体:36px。
我将如何实现这一目标。
function init(){
tinyMCE.init({
style_formats:[
{title:'h1', inline:'b', block:'h1', styles:{'font-size': '36px', 'font-family':'Arial','color':'#ff9900'}}
]
});
}
document.observe('dom:loaded', init);
我尝试了上述内容,但它不起作用。
答案 0 :(得分:0)
将以下css代码添加到editor.css
(配置参数editor_css(editor_css: '/path_to/editor.css'
))
h1 {
'font-size': '36px',
'font-family':'Arial',
'color':'#ff9900'
}