PR PR

ブログタイトルへトップページにリンクさせる方法

スポンサーリンク
新着情報
2023.04.09
2023.04.06
2023.04.03
2023.03.19
スポンサーリンク
スポンサーリンク

この記事は2013年4月8日の1年以上前に書かれたものです。現在は状況が異なる可能性がありますのでご注意ください。

記事内に広告が含まれています。

スポンサーリンク

スポンサーリンク

ブログタイトルへ

トップページリンクをさせる方法。

テンプレート>HTML の編集で「ウィジェットのテンプレートを展開」にチェック
以下、詳細。


<!--No header image -->
<div id='header-inner'>
<div class='titlewrapper'>
<h1 class='title'>
<b:include name='title'/>
</h1>
</div>
<b:include name='description'/>
</div>

この部分の<b:include name='title'/>を「a」タグで囲む


<!--No header image -->
<div id='header-inner'>
<div class='titlewrapper'>
<h1 class='title'>
<a expr:href='data:blog.homepageUrl'><b:include name='title'/></a>
</h1>
</div>
<b:include name='description'/>
</div>

以下のCSSを追加し、
マウスオーバーでフォントのカラーを変更させる。


.Header h1 a:hover {
color: #9fc5e8; //Sample
}

You may choose to prevent this website from aggregating and analyzing the actions you take here. Doing so will protect your privacy, but will also prevent the owner from learning from your actions and creating a better experience for you and other users.

コメント

スポンサーリンク
タイトルとURLをコピーしました