記事の文字関連

記事関係
・記事の文字
style.css
112行目
#content {
position: relative;
left: 30px; ←文字の左側の余白です。
float: left;
padding: 0;
width: 480px;
color: #666666; ←記事の文字色
文字サイズを変更したい場合は、下記赤字のの1行を追加して文字サイズを指定します。
style.css
112行目
#content {
position: relative;
left: 30px;
float: left;
padding: 0;
width: 480px;
color: #666666;
font-size: 13px;
}
記事のタイトル部分
黄緑の背景でページのタイトルが表示されている部分
背景に使用している画像は
/public_html/wp-content/themes/wdtkihon/images
h3.jpg
style.css
172行目
#content h3 {
width: 480px; ←背景画像の横幅
height: 40px; ←背景画像の高さ
margin: 0;
padding: 3px 0px 0px 20px; 文字の位置 上余白- -下余白-左余白
}
#content h3.storytitle, #content h3.storytitle a {
font-size: 16px; ←文字サイズ
color: #5F707A; ←通常表示時の文字色
text-decoration: none;
background: url(images/h3.jpg) top left no-repeat; ←背景画像
}
#content h3.storytitle a:hover {
color: #495865; ←マウスが上に来た時の文字色
text-decoration: none;
ホームページのタイトル表示
ワードプレスでホームページ作成とテーマ販売 と表示している部分
style.css
121行目
#content h2 {
border-bottom: 1px solid #6F6F6F; アンダーラインの幅と色
color: #5F707A; ←文字の色
font-size: 13px; ←文字の大きさ
margin: 20px 0 5px 0; ←上の余白 下の余白
padding: 0 0 3px 0; ←アンダーラインと文字の間隔
text-align: right;
width: 480px;
}