1 頁 (共 1 頁)

[外掛] 讓簽名在帖子中靠齊下方

發表於 : 2006-06-13 , 21:07
懸壺子
[外掛] 讓簽名在帖子中靠齊下方

http://phpbb-tw.net/phpbb/viewtopic.php?t=31849

phpbb裡面顯示用戶的簽名總是緊跟在正文之後,有的時候看上去很不美觀,隨手改了一下,讓簽名在帖子裡面靠下方對齊,做成了一個小MOD,希望能給有需要的人一點幫助

代碼: 選擇全部

############################################################## 
## MOD Title:bottom Signature 
## MOD Author: puhongyi < puhongyi@gmail.com > www.firefox.net.cn 
## MOD Description:讓簽名在帖子中靠齊下方 
## MOD Version: 1.0.0 
## Example:http://www.firefox.net.cn/ 
## Installation Level: Easy 
## Installation Time: 2 Minutes 
## Files To Edit: templatessubSilverviewtopic_body.tpl 
## Included Files: (n/a) 
############################################################## 
############################################################## 
## MOD History: 
## 
##   2005-01-20 - Version 1.0.0 
##      - Initial Release 
##    
## 
############################################################## 
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD 
##安裝之前請先備份你的論壇 
############################################################## 

#
#打開 templatessubSilverviewtopic_body.tpl
#

#
#找到
#

代碼: 選擇全部

<table class="forumline" width="100%" cellspacing="1" cellpadding="3" border="0"> 
#
#替換為
#

\n

代碼: 選擇全部

<table class="forumline" width="100%" cellspacing="0" cellpadding="3" border="0"> 
#
#找到
#

代碼: 選擇全部

<td width="150" align="left" valign="top" class="{postrow.ROW_CLASS}"> 
#
#在行內修改為
#

代碼: 選擇全部

<td width="150" align="left" valign="top" class="{postrow.ROW_CLASS}" rowspan=2 > 
#
#找到
#

代碼: 選擇全部

 
{postrow.SIGNATURE} 
#
#在行內刪除
#

#
#找到
#

代碼: 選擇全部

</tr> 
   <tr> 
      <td class="{postrow.ROW_CLASS}" width="150" align="left" valign="middle"><span class="nav"><a href="#top" class="nav">{L_BACK_TO_TOP}</a></span></td> 
#
#在之前加上
#

代碼: 選擇全部

<tr> 
 <td class="{postrow.ROW_CLASS}"  valign="bottom" ><span class="postbody"> {postrow.SIGNATURE}</span></td>  
</tr> 
#
#完成
#