编辑当前模板下 / 帖子块 / postbit 和 postbit_legacy /
找到
<!– message –>
<table width="100%" border="0" cellspacing="0" cellpadding="0" class="tb">
<tr>
<td >
<div id="post_message_$post[postid]" class="bword">$post[message]</div>
</td>
</tr>
</table>
<!– / message –>
其中的
<div id="post_message_$post[postid]" class="bword">$post[message]</div>
是关键点, 在增加一个样式控制:
style="line-height:190%;width:580px
结果就是:
<div id="post_message_$post[postid]" class="bword" style="line-height:190%;width:580px">$post[message]</div>
意思是, 行高度是当前字体的 190%, 宽度是580px , 这样, 阅读起来就舒服多了
转贴自PHP源动力中hugsky会员,原贴为:http://phpforce.cn/bbs/showthread.php?t=5177
这个更详细。
http://www.phpforce.cn/bbs/showpost.php?p=35711&postcount=2