xcorp::When it rains, it pours.

"The nice thing about rain," said Eeyore, "is that it always stops. Eventually."

困り中…

とりあえず、saposen.com の時のデザインとほぼ同じにしたのだが、1つだけうまくいってないトコがありまして。それは、日付をポイントしてもhoverが効かんつーことなんですがね。他はすべてhoverするんだけど、cssの書きっぷりが悪いんだろーか(;´Д`)?日付の部分はHTMLとして、

<h2><a href="/xcorp/20050206"><span class="date">2005/02/06</span></a>(中略)</h2>

と出力されているので、んじゃまあ、h2 a:hoverあたりいじっとくかねつーことで

h2 a:link {
	text-decoration: none;
	border: none;
}
h2 a:visited {
	text-decoration: none;
	border: none;
}
h2 a:hover {
	color: #0000ff;
}
h2 a:active {
	text-decoration: none;
	border: none;
}

としたが、どうにも浮き上がってくれないのよね。なんでだろ(;´Д`)