第 1 頁 (共 1 頁)
[問題]像"竹貓"這樣的在線狀態要如何安裝呢?
發表於 : 2003-12-10 16:05
由 sh85216s
發表於 : 2003-12-10 16:09
由 aiken
發表於 : 2003-12-10 16:14
由 sh85216s
很抱歉!現在要下班去接孩子,晚點再來試試.先跟你說聲謝謝!!
發表於 : 2003-12-10 18:27
由 sh85216s
1.感謝您特別發訊息給我.
2.我安裝後的結果如下:
無法像竹貓那樣出現在右邊.
另外我發現修改\r
代碼: 選擇全部
//--></script><noscript>{postrow.ICQ_IMG}</noscript></td>
<td align="[color=red]right[/color]">{postrow.POSTER_ONLINE}</td>
</tr>
之中的
right並無任何作用
發表於 : 2003-12-10 18:55
由 依夢兒
你可以參考竹貓的 viewtopic_body.tpl :
代碼: 選擇全部
<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>
<td class="{postrow.ROW_CLASS}" width="100%" height="28" valign="bottom" nowrap="nowrap">
<table cellspacing="0" cellpadding="0" border="0" height="18" width="100%">
<tr>
<td>
<table cellspacing="0" cellpadding="0" border="0" height="18" width="18">
<tr>
<td nowrap="nowrap">{postrow.PROFILE_IMG} {postrow.PM_IMG} {postrow.EMAIL_IMG} {postrow.WWW_IMG} {postrow.AIM_IMG} {postrow.YIM_IMG} {postrow.MSN_IMG}<script language="JavaScript" type="text/javascript"><!--
if ( navigator.userAgent.toLowerCase().indexOf('mozilla') != -1 && navigator.userAgent.indexOf('5.') == -1 )
document.write(' {postrow.ICQ_IMG}');
else
document.write('</td><td> </td><td valign="top" nowrap="nowrap"><div style="position:relative"><div style="position:absolute">{postrow.ICQ_IMG}</div><div style="position:absolute;left:3px;top:-1px">{postrow.ICQ_STATUS_IMG}</div></div>');
//--></script><noscript>{postrow.ICQ_IMG}</noscript></td>
</tr>
</table>
</td>
<td align="right">{postrow.POSTER_ONLINE}</td>
</tr>
</table>
</td>
</tr>
發表於 : 2003-12-10 20:12
由 sh85216s
感謝"依夢兒"
我將
代碼: 選擇全部
<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>
<td class="{postrow.ROW_CLASS}" width="100%" height="28" valign="bottom" nowrap="nowrap"><table cellspacing="0" cellpadding="0" border="0" height="18" width="18">
<tr>
<td valign="middle" nowrap="nowrap">{postrow.PROFILE_IMG} {postrow.PM_IMG} {postrow.EMAIL_IMG} {postrow.WWW_IMG} {postrow.AIM_IMG} {postrow.YIM_IMG} {postrow.MSN_IMG}<script language="JavaScript" type="text/javascript"><!--
if ( navigator.userAgent.toLowerCase().indexOf('mozilla') != -1 && navigator.userAgent.indexOf('5.') == -1 && navigator.userAgent.indexOf('6.') == -1 )
document.write(' {postrow.ICQ_IMG}');
else
document.write('</td><td> </td><td valign="top" nowrap="nowrap"><div style="position:relative"><div style="position:absolute">{postrow.ICQ_IMG}</div><div style="position:absolute;left:3px;top:-1px">{postrow.ICQ_STATUS_IMG}</div></div>');
//--></script><noscript>{postrow.ICQ_IMG}</noscript></td>
</tr>
</table></td>
</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>
<td class="{postrow.ROW_CLASS}" width="100%" height="28" valign="bottom" nowrap="nowrap">
<table cellspacing="0" cellpadding="0" border="0" height="18" width="100%">
<tr>
<td>
<table cellspacing="0" cellpadding="0" border="0" height="18" width="18">
<tr>
<td nowrap="nowrap">{postrow.PROFILE_IMG} {postrow.PM_IMG} {postrow.EMAIL_IMG} {postrow.WWW_IMG} {postrow.AIM_IMG} {postrow.YIM_IMG} {postrow.MSN_IMG}<script language="JavaScript" type="text/javascript"><!--
if ( navigator.userAgent.toLowerCase().indexOf('mozilla') != -1 && navigator.userAgent.indexOf('5.') == -1 )
document.write(' {postrow.ICQ_IMG}');
else
document.write('</td><td> </td><td valign="top" nowrap="nowrap"><div style="position:relative"><div style="position:absolute">{postrow.ICQ_IMG}</div><div style="position:absolute;left:3px;top:-1px">{postrow.ICQ_STATUS_IMG}</div></div>');
//--></script><noscript>{postrow.ICQ_IMG}</noscript></td>
</tr>
</table>
</td>
<td align="right">{postrow.POSTER_ONLINE}</td>
</tr>
</table>
</td>
</tr>
就搞定了!
非常謝謝您的協助,3Q!