我想更改默认" Timesnewroman"字体到" Verdana" /别的。我在config.js中尝试了config.font_style
和config.font_names
,但它没有用。是否有任何变通方法可以更改此设置。
注意:我通过Drupal 7 WYSIWYG模块使用ckeditor插件。
答案 0 :(得分:0)
您可以在template.php文件中使用hook
function THEMENAME_wysiwyg_editor_settings_alter(&$settings, $context) {
if ($context['profile']->editor == 'ckeditor') {
$settings['font_names'] = 'Arial/Arial, Helvetica, sans-serif; Times New Roman/Times New Roman, Times, serif;Verdana';
$settings['font_defaultLabel'] = 'Verdana';
}
}
您还可以为CKEditor添加其他设置