最近看到很多关于个人签名空白太多的贴子,但很多是适合DZ6.0的,很多都是用了米吧的个人信息美化造成的,根据88212560发布的修正方案,现总结如下:
适用范围 Z6.1 <特别适合用了米吧个人信息美化的>
原作者:88212560<尊重原创,我只是作一下整理>
原贴:https://discuz.dismall.com/viewth ... hlight=%C7%A9%C3%FB
修改如下:
打开viewthread.htm文件,查找 代码:
<td class="postauthor">
修改为
<td class="postauthor" rowspan="2">
然后,查找
<div class="signatures" style="maxHeightIE: {MAXSIGROWS}px;">
$post[signature]
</div>
<!--{/if}-->
如果查找不到请查找单行
$post[signature]
然后选择将这一整段话替换为
<tr><td style="vertical-align:bottom;border:0;"><!--{if $post['signature'] && !$post['anonymous'] && $showsignatures}-->
<div class="signatures" style="maxHeightIE: {MAXSIGROWS}px;">
$post[signature]
</div>
<!--{/if}--></td></tr>
改好了以后整段就成了下面这一段
<!--{if $post['signature'] && !$post['anonymous'] && $showsignatures}-->
<div class="signatures" style="maxHeightIE: {$maxsigrows}px;">
$post[signature]
</div>
<!--{/if}-->
</td>
</tr>
<tr>
</td>
</tr>
<tr>
然后把上面这一段改成下面的这一段
<!-- 修高开始 -->
</div>
</td>
</tr>
<tr><td style="vertical-align:bottom;border:0;"><!--{if $post['signature'] && !$post['anonymous'] && $showsignatures}-->
<div class="signatures" style="maxHeightIE: {MAXSIGROWS}px;">
$post[signature]
</div>
<!--{/if}--></td></tr>
<!--修高结束 -->
很多人修改到这步,人个签名就跑到个人信息下面了,那么,再打开show.htm
查找:<td align="center" valign="top" class="postauthor"
在后面加一句(是加在括号里面的)
rowspan="2"
有修改好的. |