WordPressのfont及びfont-size等の変更

外観>テーマ編集でstyle.cssを編集します。

投稿された文章のフォントを変更する場合、

.pingback a.url {
- font-family: Georgia, "Bitstream Charter", serif;
+ font-family: verdana, helvetica, sans-serif;
}

フォントサイズを変更する場合、

#content,
#content input,
#content textarea {
 color: #333;
 font-size: 14px;
 line-height: 20px;
}

改行幅を変更する場合、

#content p,
#content ul,
#content ol,
#content dd,
#content pre,
#content hr {
 margin-bottom: 24px;
}

段落の最初にインデントをつける場合、

#content p {
 text-indent: 1em;
}

などとします。

This entry was posted in WordPress and tagged . Bookmark the permalink.

コメントを残す

メールアドレスが公開されることはありません。 * が付いている欄は必須項目です

*

次のHTML タグと属性が使えます: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>