Forum Replies Created

Viewing 1 replies (of 1 total)
  • Thread Starter tigerlight

    (@tigerlight)

    Thanks. I read your article and fixed it. I started by just copying the style.css to editor-style.css. That almost worked. There was an issue with a numbered list.

    Using the chrome inspector on the admin editor page I saw that there is no div with entry_content class. I eventually realized I could replace ‘.entry_content’ in editor-style.css with #tinymce. That seems to have given me all the formatting equivalence I need.

    So the solution was:

    within the theme folder
    (which for me is the genesis child theme executive_pro),

    – copy styles.css to editor-style.css
    — in editor-style.css replace all ‘.entry_content’ with ‘#tinymce’

    – add the following code to functions.php

    function executive_pro_add_editor_styles() {
    add_editor_style( 'editor-style.css' );
    }
    add_action( 'after_setup_theme', 'executive_pro_add_editor_styles' );

Viewing 1 replies (of 1 total)