「吹き出し」ヘッダーの bg として 3 つの画像 (左、繰り返し、右) を使用しようとしていますが、中央を繰り返してコンテナー div を埋めることができません。
これがその場所です(「こんにちは」が付いた灰色のバブル)http://www.dev.inside-guides.co.uk/brentwood/pages/index.html
CSSは次のとおりです。
.right-nav .speech-left {float:left;background:url(/images/speech-left.png) no-repeat;width:55px;height:47px;}
.right-nav h2.speech-repeat {display:block;float:left;background:url(/images/speech-repeat.png) repeat-x;height:47px;}
.right-nav .speech-right {float:left;background:url(/images/speech-right.png) no-repeat;width:10px;height:47px;}
そしてhtml:
<div class="bg clearfix" style="width:100%;">
<div class="speech-left"></div>
<h2 class="speech-repeat">hello</h2>
<div class="speech-right"></div>
</div>
どんな助けでも大歓迎です。