@markus92780
I haven’t found an easy way to change default font to Arial
sorry for this late reply.
No direct modifications to the plug-ing itself :
– 1) add a new css file, called it whatever you want, like “tinymce_custom_editor.css” for example, upload it to the folder “css” in your theme ->?[wp-content/themes/YOUR-THEME/css/]
– 2) add a new function in your theme “function.php”?file
Details :
1) CSS ↓
?Make a file “tinymce_custom_editor.css” with following code ↓, then?add?it to folder?[wp-content/themes/grandblog/css]
————————-
body#tinymce.wp-editor {
font-family: Arial, Helvetica, sans-serif !important;
}
————————-
2) function.php
Add following new function to call previously uploaded css file?“tinymce_custom_editor.css” in [wp-content/themes/YOUR-THEME/functions.php] ↓
————————-
function my_theme_add_editor_styles() {
??? add_editor_style( ‘css/tinymce_custom_editor.css’ );
}
add_action( ‘after_setup_theme’, ‘my_theme_add_editor_styles’ );
————————-
Hope the best is better.