WordPress 10 周年ということで dogmap.jp のヘッダ画像を期間限定で変更してみました。
テーマ Twenty Twelve を使ってる場合は、Jetpack プラグインのカスタムCSS編集で簡単に変更できます。
レシピを gist に置いておきますね。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#masthead hgroup { | |
background: url("/path/to/wp-10th-aniversary.png") no-repeat scroll center center rgb(204,204,204); | |
height: 127px; | |
-webkit-border-radius: 6px; | |
-moz-border-radius: 6px; | |
border-radius: 6px; | |
-webkit-box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.2); | |
-moz-box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.2); | |
box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.2); | |
padding-left: 12px; | |
} | |
#masthead h2.site-description { | |
margin-top: 3.5em; | |
} |
url("/path/to/wp-10th-aniversary.png") の所は、WordPress 10th Aniversary ヘッダを保存した URL に書き換えてやってください。