What do you mean? The visual and text editors?
You could either do what it says in the settings:
Advanced Options
Create CSS classes menu
Load the CSS classes used in editor-style.css and replace the Formats menu.
ERROR: A stylesheet file named editor-style.css was not added by your theme. To use this option, add editor-style.css to your theme or a child theme. Enabling this option will also load that stylesheet in the editor.
I get ERROR because ages ago we did this – make a css file and then load it from functions.php in the theme folder.
css file named tinymce-visual-editor.css :
/*Tiny MCE advanced visual editor font setting*/
html .mceContentBody {
font-family: Verdana,Arial,Helvetica,sans-serif !important ;
font-size: 12px !important;
}
In functions.php:
// Add styles to the WYSIWYG editor. Function finds stylesheet from the root of the current theme's folder.
add_editor_style('tinymce-visual-editor.css');
-
This reply was modified 7 years, 6 months ago by
digbymaass.
-
This reply was modified 7 years, 6 months ago by
digbymaass.