cssでがっつり置換する方法、SEO的には多分NGじゃねぇ?
html
[sourcecode language=’html’]
<div id=”telimg”>
<div>
<dl>
<dt>055-977-1122</dt>
<dd>11:00~19:00 (定休日火曜日を除く)</dd>
</dl>
</div>
</div>
[/sourcecode]
css側ではこんな感じにする
[sourcecode language=’css’]
div#telimg {
margin:10px 0;
background:url(../images/telimg.gif) no-repeat;
width:425px;
height:112px;
overflow:hidden;
}
div#telimg div {
padding:0 0 0 425px;
overflow:hidden;
width:425px;
}
[/sourcecode]