March2015

Posted in: WordPress

Custom Styles for WordPress Visual Editor

Create a new CSS file in your theme folder and name it custom-editor-style.css Then open your functions.php file, in your theme folder, and paste the following: function my_theme_add_editor_styles() { add_editor_style( ‘custom-editor-style.css’ ); } add_action( ‘init’, ‘my_theme_add_editor_styles’ ); Then write your new styles in the custom-editor-style.css file.

Read More »