在tiny mce插件中调整用于段落的字体大小

时间:2012-01-20 07:30:32

标签: tinymce

我使用TINY_MCE插件来拥有一个高级编辑器。问题是这个插件中使用的默认字体对我来说是太小。是否有可能改变它?我的意思是段落使用的默认字体。如下所示,字体比我用于其他字段的字体小。

enter image description here

感谢。

1 个答案:

答案 0 :(得分:1)

这并不困难。最简单的方法是使用tinymce init参数content_css

//css file, which will overwrite the default css settings for the editors itframe
content_css: 'my_css_file.css',

在此ccs文件中,您需要设置

p {
    font-size: 30px; // or whtever you like
}