• 解決済 Neon

    (@nettoneon)


    現在以下のようにしてエディタースタイルを追加しています。

    add_theme_support('editor-styles');

    // 管理画面
    function my_theme_add_editor_styles() {
      add_editor_style('./assets/css/editor.css');
    }
    add_action('after_setup_theme', 'my_theme_add_editor_styles');

    投稿設定「advanced > custom field」からカスタムフィールドをオンにすると、スタイルが追加されてエディターのcss(主にfont-size)が上書きされてしまいます。
    もしfunction.phpの設定で修正できるなら直したいです。

2件の返信を表示中 - 1 - 2件目 (全2件中)
  • munyagu

    (@munyagu)

    こんにちは

    editor.css に書かれているセレクタの詳細度を上げるのではダメなのでしょうか?

    トピック投稿者 Neon

    (@nettoneon)

    p,divのfont-sizeは以下で上書きできました!

    .editor-styles-wrapper p,
    .editor-styles-wrapper div {
    font-size: 16px;
    }

    原因は以下でした。

    //load-styles.css
    .wp-die-message,p {
    font-size: 13px;
    line-height: 1.5;
    margin: 1em 0;
    }

    リセットCSSのfont-sizeの設定が競合していたのも良くなかったようです(消しました)。

2件の返信を表示中 - 1 - 2件目 (全2件中)
  • このトピックに返信するにはログインが必要です。