1 頁 (共 1 頁)

[問題]請問簽名檔的問題

發表於 : 2003-05-25 10:13
uwei
請問如何讓簽名檔向下靠齊...
就像是竹貓星球的一樣!!
我用 plus 1.1 可是編輯完簽名檔後...
貼文章顯示時下面空出很多行..粉醜!!
可以幫我看看嗎?
http://uwei.adsldns.org/phpbb/

發表於 : 2003-05-25 11:14
cony

發表於 : 2003-05-25 13:36
uwei
連竹貓plus網站簽名檔也是這樣...
難道真的沒救了嗎? :cry: :cry:

發表於 : 2003-05-25 17:29
Mac

發表於 : 2003-05-26 09:58
uwei
問題已解決,感謝 Mac 大大相助!

解決辦法如下:

代碼: 選擇全部

#-----[ OPEN ]------------------------------------------ 
# 
/phpBB2/templates/subSilver/viewtopic_body.tpl 
# 
#-----[ FIND ]------------------------------------------ 
# 

        <td class="{postrow.ROW_CLASS}" width="100%" height="28" valign="top"><table width="100%" border="0" cellspacing="0" cellpadding="0"> 
         <tr> 
            <td width="100%"><a href="{postrow.U_MINI_POST}"><img src="{postrow.MINI_POST_IMG}" width="12" height="9" alt="{postrow.L_MINI_POST_ALT}" title="{postrow.L_MINI_POST_ALT}" border="0" /></a><span class="postdetails">{L_POSTED}: {postrow.POST_DATE}<span class="gen">&</span>& &{L_POST_SUBJECT}: {postrow.POST_SUBJECT}</span></td> 
            <td valign="top" align="right" nowrap="nowrap">{postrow.QUOTE_IMG} {postrow.EDIT_IMG} {postrow.DELETE_IMG} {postrow.IP_IMG}</td> 
         </tr> 
         <tr> 
            <td colspan="2"><hr /></td> 
         </tr> 
         <tr> 
            <td colspan="2"><span class="postbody">{postrow.MESSAGE}{postrow.SIGNATURE}</span><span class="gensmall">{postrow.EDITED_MESSAGE}</span></td> 
         </tr> 
      </table></td> 


# 
#-----[ REPLACE, WITH ]------------------------------------------ 
# 
        <td class="{postrow.ROW_CLASS}" width="100%" height="28" valign="top"> 
                <table width="100%" border="0" cellspacing="0" cellpadding="0" height="100%"> 
                    <tr> 
                        <td width="100%"><a href="{postrow.U_MINI_POST}"><img src="{postrow.MINI_POST_IMG}" width="12" height="9" alt="{postrow.L_MINI_POST_ALT}" title="{postrow.L_MINI_POST_ALT}" border="0" /></a><span class="postdetails">{L_POSTED}: {postrow.POST_DATE}<span class="gen">&</span>& &{L_POST_SUBJECT}: {postrow.POST_SUBJECT}</span></td> 
                        <td valign="top" align="right" nowrap="nowrap">{postrow.QUOTE_IMG} {postrow.EDIT_IMG} {postrow.DELETE_IMG} {postrow.IP_IMG}</td> 
                    </tr> 
                    <tr>     
                        <td colspan="2"><hr /></td> 
                    </tr>    
                    <tr> 
                        <td colspan="2" HEIGHT="100%" VALIGN="TOP"><span class="postbody">{postrow.MESSAGE}</span><BR /><SPAN CLASS="gensmall">{postrow.EDITED_MESSAGE}</SPAN></td> 
                    </tr> 
                    <tr> 
                        <td colspan="2" VALIGN="BOTTOM"><SPAN CLASS="postbody">{postrow.SIGNATURE}</SPAN></td> 
                    </tr>       
                </table></td> 
# 
#-----[ SAVE/UPLOAD ]------------------------------------------