TinyMCE increase font family dropdown font sizes

 ̄綄美尐妖づ 提交于 2019-12-13 14:51:09

问题


Does anyone know how I can increase the font size of the 'font family dropdown' list items in TinyMCE?

Thanks!


回答1:


You will need to create an own css file and use the tinymce configuration parameter

content_css : your_css_file.css,

Your css file will have to contain the following. You may adjust the font-size here

.mceMenu span.mceText,.mceMenu .mcePreview {
    font-size: 11px;
}


来源:https://stackoverflow.com/questions/14115747/tinymce-increase-font-family-dropdown-font-sizes

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!