★対象テンプレート:Favilla
スタイルシートのカスタマイズから、
/*────────────────────────────────────────
■ ヘッダー部の設定
タイトル・ブログの紹介を含む部分の設定です。
────────────────────────────────────────*/
#header {
padding : 140px 0;
width : 40%;
float : right;
}
.header-container {
width : 100%;
overflow : hidden;
text-align : center;
}
#title h1 {
margin : 0;
padding : 0 0.3em 1px;
border-bottom : 1px solid #333;
font-size : 130%;
font-weight : bold;
}
の部分を次の記述で置き換えてください。
#header {
padding : 0 0 140px;
width : 40%;
float : right;
}
.header-container {
width : 100%;
overflow : hidden;
text-align : center;
}
#title h1 {
margin : 0;
padding : 140px 0.3em 1px;
border-bottom : 1px solid #333;
background-image : url("画像のurl");
background-repeat : no-repeat;
background-position : left top;
font-size : 130%;
font-weight : bold;
}さらに、このなかの、
background-image : url("画像のurl");
background-repeat : no-repeat;
background-position : left top;という部分を使いたい画像にあわせて適宜変更してください。
Recent Comments