WordPresssで管理画面のビジュアルエディタ投稿画面の行間を狭くしり文字の色とか変えたい。
/wp-content/themes/xxxxxxxx
※「xxxxxxxx」は、テーマファイルの編集用のフォルダです。
ええっと、テーマファイルを修正する場合は、オリジナルのテーマファイルは修正せずにオリジナルのテーマファイルを参照して追記・変更する部分のみを書いて自分のテーマファイルとして保存して使用するというのがWordpressのテーマファイルの変更方法らしい。
本題ですが、
「functions.php」
に
[css]#### 管理画面の投稿入力欄のスタイルシート編集
add_action( ‘after_setup_theme’, ‘momonga_theme_setup’ );
function momonga_theme_setup(){
add_editor_style(‘momonga-style.css’);
}[/css]
momonga-style.css に
[css]
.mceContentBody p{
font-family: Arial,’ヒラギノ角ゴ Pro W3′,’Hiragino Kaku Gothic Pro’,Osaka,’MS Pゴシック’,sans-serif;
font-size: 15px;
color: #111;
margin: 20px;
line-height: 1.3em;
}
.mceContentBody p a{
color: #0033cc;
text-decoration: underline;
}
[/css]
※¶→ 段落記号
コメントを残す