今回は
見出しデザインの素材・サンプル集
を紹介します。
画像とCSS・HTMLタグを
合わせて紹介していますので、
参考にして使用してください。
また、WordPressテーマ賢威の
見出しのカスタマイズ方法も紹介します。
今回紹介する見出しデザインは
以下の画像にある9種類です。
見出しのコードを確認したい時は
下にある目次をクリックすると
すぐにコードを確認できます。
見出しデザインフリー素材集(サンプル)CSS・HTMLタグも!
上で紹介した見出しデザインの
画像とコードを順番に紹介します。
ここではすべてh3タグを例にしていますが、
あなたが使用している見出しに合わせて
h2、h4など数字を変えて使用してください。
↓見出しデザインフリー素材①
↓見出しコード
1 2 3 4 5 6 7 8 |
h3{ margin: 0 0 1.5em; padding: 0.8em; border-left: 7px solid #B92A2C; border-bottom: 1px dashed #B92A2C; font-size: 1.143em; font-weight: bold; } |
↓見出しデザインフリー素材②
↓見出しコード
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
h3{ position: relative; margin: 0 0 1.5em; padding: 0.8em 0 0.8em 1.5em; border: 2px solid #B92A2C; font-size: 1.143em; font-weight: bold; } h3:before{ content: ""; position: absolute; background: #B92A2C; top: 50%; left: 0.5em; margin-top :-15px; height: 30px; width: 8px; border-radius: 2px; -webkit-border-radius: 2px; -moz-border-radius: 2px; } |
↓見出しデザインフリー素材③
↓見出しコード
1 2 3 4 5 6 7 8 |
h3{ margin: 0 0 1.5em; padding: 0.8em; border-top: 3px double #B92A2C; border-bottom: 3px double #B92A2C; font-size: 1.143em; font-weight: bold; } |
↓見出しデザインフリー素材④
↓見出しコード
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
h3{ position: relative; font-size: 1.143em; font-weight: bold; margin: 0 0 1.5em; padding: 0.5em 0.5em 0.5em 2.0em; border-bottom: 2px solid #B92A2C; } h3:before{ content: "□"; font-size: 200%; position: absolute; color: #ff6b6e; top: -0.8em; left: 0.3em; height: 12px; width: 12px; } h3:after{ content: "□"; font-size: 200%; position: absolute; color: #B92A2C; top: -0.5em; left: 0; height: 12px; width: 12px; } |
↓見出しデザインフリー素材⑤
↓見出しコード
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
h3{ position: relative; font-size: 1.143em; font-weight: bold; margin: 0 0 1.5em; padding: 0.5em 0.5em 0.5em 2.0em; border-bottom: 2px solid #4169E1; } h3:before{ content: "□"; font-size: 200%; position: absolute; color: #40E0D0; top: -0.8em; left: 0.3em; height: 12px; width: 12px; } h3:after{ content: "□"; font-size: 200%; position: absolute; color: #4169E1; top: -0.5em; left: 0; height: 12px; width: 12px; } |
↓見出しデザインフリー素材⑥
↓見出しコード
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 |
h3{ position: relative; color: #111; font-size: 1.143em; font-weight: bold; margin: 0 0 1.5em; padding: 0.5em 0.5em 0.5em 1.7em; border-bottom: 3px solid #B92A2C; } h3:before{ content: ""; position: absolute; background: #d48789; top: 0; left: 0.4em; height: 12px; width: 12px; transform: rotate(45deg); -moz-transform: rotate(45deg); -webkit-transform: rotate(45deg); -o-transform: rotate(45deg); -ms-transform: rotate(45deg); } h3:after{ content: ""; position: absolute; background:#d26466; top: 1.0em; left: 0; height: 8px; width: 8px; transform: rotate(15deg); -moz-transform: rotate(15deg); -webkit-transform: rotate(15deg); -o-transform: rotate(15deg); -ms-transform: rotate(15deg); } |
↓見出しデザインフリー素材⑦
↓見出しコード
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 |
h3 { position:relative; padding:5px 20px; font:bold 28px/1.6 Arial, Helvetica, sans-serif; color:#333; background:#fff; text-shadow: 1px 1px 0 #fff, 2px 2px 0 #999; border-top:#333 solid 3px; border-bottom:#333 solid 3px; background-image: -webkit-gradient(linear, left top, right bottom, from( rgba(255, 255, 255, 0.0)), color-stop(0.4, rgba(255, 255, 255, 0.0)), color-stop(0.4, rgba(0, 0, 0, 0.1)), color-stop(0.6, rgba(0, 0, 0, 0.1)), color-stop(0.6, rgba(255, 255, 255, 0.0)), to( rgba(255, 255, 255, 0.0)) ); background-image: -webkit-linear-gradient(top -45deg, transparent 40%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0.1) 60%, transparent 60% ); background-image: -moz-linear-gradient(top -45deg, transparent 40%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0.1) 60%, transparent 60% ); background-image: -o-linear-gradient(top -45deg, transparent 40%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0.1) 60%, transparent 60% ); background-image: linear-gradient(to bottom -45deg, transparent 40%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0.1) 60%, transparent 60% ); background-size:4px 4px; } h3:before{ content:" "; position:absolute; top:100%; left:24px; width:0; height:0; border-width:12px; border-style:solid; border-color:transparent; border-top-color:#333; } h3:after{ content:" "; position:absolute; top:100%; left:28px; width:0; height:0; border-width:8px; border-style:solid; border-color:transparent; border-top-color:#f0f0f0; z-index:1; } |
↓見出しデザインフリー素材⑧
↓見出しコード
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
h3{ position: relative; margin: 0 0 1.5em; padding: 0.8em; font-size: 1.143em; font-weight: bold; color: #fff; background: #B92A2C; } h3:before{ content: "<"; position: absolute; top: middle; left: -10px; width: 0; height: 0; font-size: 25px; line-height: 1.0; color: #c96; } h3:after{ content: " "; position: absolute; top: -2px; left: -10px; width: 0; height: 130%; border: #600 solid 2px; border-radius:2px; -webkit-border-radius: 2px; -moz-border-radius: 2px; transform: rotate(-2deg); -webkit-transform: rotate(-2deg); -moz-transform: rotate(-2deg); -o-transform: rotate(-2deg); } |
↓見出しデザインフリー素材⑨
↓見出しコード
1 2 3 4 5 6 |
h3 { margin: 45px 0px 35px 0px; padding: 12px 10px; background: #179C17; color: #ffffff; } |
WordPressテーマ賢威の見出しカスタマイズ方法
ダッシュボードの「外観」
→「テーマエディター」
→「design.css」をクリック。
「design.css」内の以下の部分で
見出しデザインの指定をしています。
メインコンテンツ(本文)
——————————————————–*/
・・・
/*●H2タグ*/
・・・
/*●H3タグ*/
・・・
/*●H4タグ*/
・・・
/*●H5タグ*/
・・・
変更したいタグ内に
上で紹介したコードを入力すると
見出しを変更することができます。
今回紹介したコードを参考に、
オリジナルの見出しを作ってみてください。
デザインと関係のない話ですが、
できるだけ見出しタグの順番は
小さい数値から順番に使うように
してください。
h1 → h2 → h3 → …というように。
特にSEO上の効果はありませんが、
(Googleマット・カッツさんが言及)
順番に使用した方が管理しやすいです。
特に意図がない時は順番に使いましょう。