1 頁 (共 1 頁)

[問題]個性簽名無法正確靠下緣[已解決]

發表於 : 2004-09-23 19:22
sh85216s
我已參考:http://phpbb-tw.net/phpbb/viewtopic.php?t=17016

但因我有安裝"文章泡泡"、"attach mod"、"自動斷行"......

目前程式碼已經改變很多
試了幾次仍然無法成功,不知道可不可以把我的 viewtopic_body.tpl 裡相關的程式碼貼出來,請高手指導一下,多謝!!

程式碼如下︰\r

代碼: 選擇全部

			</tr>
			<tr> 
				<td colspan="2"><hr /></td>
			</tr>
			<tr>
				<td colspan="2"><table style="table-layout:fixed"><tr><td style="word-wrap:break-word"<span class="postbody"><TABLE border="0" cellpadding="0" cellspacing="0" style="word-break:break-all"> 
<TBODY> 
<TR> 
<TD width="14"><IMG height="8" src="images/postable/top_l.gif" width="14"></TD> 
<TD background="images/postable/top_c.gif"></TD> 
<TD width="16"><IMG height="8" src="images/postable/top_r.gif" width="16"></TD> 
</TR> 
<TR> 
<TD background="images/postable/center_l.gif" valign="top" width="14"></TD> 
<TD bgcolor="#fffff1"> 
<P><span class = "postbody">{postrow.MESSAGE}</P></TD> 
<TD background="images/postable/center_r.gif" valign="top" width="16"><IMG height="8" src="images/postable/top_r2.gif" width="16"></TD> 
</TR> 
<TR> 
<TD valign="top" width="14"> 

<IMG height="42" src="images/postable/foot_l1.gif" width="14"></TD> 
<TD background="images/postable/foot_c.gif"><IMG height="42" src="images/postable/foot_l3.gif" width="36"></TD> 
<TD align="right" width="16"><IMG height="42" src="images/postable/foot_r.gif" width="16"></TD> 
</TR> 
</TBODY> 
</TABLE></span>{postrow.ATTACHMENTS}<span class="postbody">{postrow.SIGNATURE}</span><span class="gensmall">{postrow.EDITED_MESSAGE}</span></td>
			</tr></tr></table></td>
		</table></td>
	</tr>
懇請大家幫個忙!!

發表於 : 2004-09-23 20:55
ayaya
你的「本文部分」和簽名檔都放在同一格<td>裡,簽名檔當然會黏在本文的下面,不會往下靠
要簽名檔往下靠,基本的架構是這樣的
<td height="100%">
<table cellspacing="0" cellpadding="0" width="100%" height="100%">
<tr><td>文章發表時間那一行</td></tr>
<tr><td height="100%" valign="top">本文部份</td></tr>
<tr><td>簽名檔</td></tr>
<tr><td>個人資料那一行</td></tr>
</table>
</td>

版面修改須要看到你的版面對照才行,要不然看到一堆<td><tr>我都頭昏了…\r
再加上你的原始碼很亂(有錯的我都幫你標明了),又有加table-layout和word-break的屬性\r
因此要修改到好可能要實際試很多次才能成功,光看原始碼幫你改一定會出錯的
so...sorry...我只能給你建議,你自己慢慢試囉!


<tr>
<td colspan="2"><hr /></td>
</tr>


<tr>
<td colspan="2">
<table style="table-layout:fixed">
<tr>
<td style="word-wrap:break-word"這個標籤漏掉了結束符號">"

<span class="postbody">
<TABLE border="0" cellpadding="0" cellspacing="0" style="word-break:break-all">
<TBODY>
<TR>
<TD width="14">
<IMG height="8" src="images/postable/top_l.gif" width="14">
</TD>
<TD background="images/postable/top_c.gif">
</TD>
<TD width="16">
<IMG height="8" src="images/postable/top_r.gif" width="16">
</TD>
</TR>

<TR>
<TD background="images/postable/center_l.gif" valign="top" width="14">
</TD>
<TD bgcolor="#fffff1">
<P><span class = "postbody">{postrow.MESSAGE}</P></TD>
<TD background="images/postable/center_r.gif" valign="top" width="16">
<IMG height="8" src="images/postable/top_r2.gif" width="16">
</TD>
</TR>

<TR>
<TD valign="top" width="14">
<IMG height="42" src="images/postable/foot_l1.gif" width="14">
</TD>
<TD background="images/postable/foot_c.gif">
<IMG height="42" src="images/postable/foot_l3.gif" width="36">
</TD>
<TD align="right" width="16">
<IMG height="42" src="images/postable/foot_r.gif" width="16">
</TD>
</TR>
</TBODY>
</TABLE>
</span>

{postrow.ATTACHMENTS}

<span class="postbody">{postrow.SIGNATURE}</span>

<span class="gensmall">{postrow.EDITED_MESSAGE}</span>

</td>
</tr>多餘的標籤
</tr>
</table>
</td>
少一個</tr>標籤
</table>



</td>
</tr>

發表於 : 2004-09-23 21:07
sh85216s
真的很感謝幫我找到了錯誤,並提供好好的建議!!

I'll try it again !!

發表於 : 2004-09-24 09:24
sh85216s
試過 N 次了,就是無法成功!!
之前在 http://211.75.225.57/phpBB2/ 是成功的
但是現在.......即使把整個 viewtopic_body.tpl 套上來用,還是有問題!!
真是難纏!!

請您再次幫我看看好嗎??
整個 viewtopic_body.tpl 如下:

代碼: 選擇全部

<table width="100%" cellspacing="2" cellpadding="2" border="0">
  <tr> 
	<td align="left" valign="bottom" colspan="2"><a class="maintitle" href="{U_VIEW_TOPIC}">{TOPIC_TITLE}</a><br />
	  <span class="gensmall"><b>{PAGINATION}</b><br />
	    </span></td>
  </tr>
</table>

<table width="100%" cellspacing="2" cellpadding="2" border="0">
  <tr> 
	<td align="left" valign="bottom" nowrap="nowrap"><span class="nav"><a href="{U_POST_NEW_TOPIC}"><img src="{POST_IMG}" border="0" alt="{L_POST_NEW_TOPIC}" align="middle" /></a>   <a href="{U_POST_REPLY_TOPIC}"><img src="{REPLY_IMG}" border="0" alt="{L_POST_REPLY_TOPIC}" align="middle" /></a>   <a target="_blank" href="{U_PRINTER_TOPIC}"><img src="{PRINTER_IMG}" border="0" alt="{L_PRINTER_TOPIC}" align="middle" /></a></span></td>
	<td align="left" valign="middle" width="100%"><span class="nav">   <a href="{U_INDEX}" class="nav">{L_INDEX}</a> 
	  -> <a href="{U_VIEW_FORUM}" class="nav">{FORUM_NAME}</a></span></td>
  </tr>
</table>

<table class="forumline" width="100%" cellspacing="1" cellpadding="3" border="0">
	<tr align="right">
		<td class="catHead" colspan="2" height="28"><span class="nav"><a href="{U_VIEW_OLDER_TOPIC}" class="nav">{L_VIEW_PREVIOUS_TOPIC}</a> :: <a href="{U_VIEW_NEWER_TOPIC}" class="nav">{L_VIEW_NEXT_TOPIC}</a>  </span></td>
	</tr>
	{POLL_DISPLAY} 
	<tr>
		<th class="thLeft" width="150" height="26" nowrap="nowrap">{L_AUTHOR}</th>
		<th class="thRight" nowrap="nowrap">{L_MESSAGE}</th>
	</tr>
	<!-- BEGIN postrow -->
	<tr> 
		<td width="150" align="center" valign="top" class="{postrow.ROW_CLASS}"><span style="filter: glow(color={postrow.GLOWING_COLOR},strength=3); height:10px; color:white; padding:1px; font-size : 11px"><a name="{postrow.U_POST_ID}"></a><b>{postrow.POSTER_NAME}</b></span><br /><span class="postdetails">{postrow.POSTER_RANK}<br />{postrow.RANK_IMAGE}{postrow.POSTER_AVATAR}<br /><br /><fieldset><legend>小檔案 </legend><table width="100%" cellpadding="0" cellspacing="0" border="0"><br />{postrow.POSTER_FROM}<br />{postrow.POSTER_POSTS}<br />{postrow.RR_HACK}<br />{postrow.POSTER_JOINED}<br />{postrow.POSTER_ONLINE}</table></fieldset></span><br /></td>
		<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" 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"><table style="table-layout:fixed"><tr><td style="word-wrap:break-word"><span class="postbody"><TABLE border="0" cellpadding="0" cellspacing="0" style="word-break:break-all"> 
<TBODY> 
<TR> 
<TD width="14"><IMG height="8" src="images/postable/top_l.gif" width="14"></TD> 
<TD background="images/postable/top_c.gif"></TD> 
<TD width="16"><IMG height="8" src="images/postable/top_r.gif" width="16"></TD> 
</TR> 
<TR> 
<TD background="images/postable/center_l.gif" valign="top" width="14"></TD> 
<TD bgcolor="#fffff1"> 
<P><span class = "postbody">{postrow.MESSAGE}</P></TD> 
<TD background="images/postable/center_r.gif" valign="top" width="16"><IMG height="8" src="images/postable/top_r2.gif" width="16"></TD> 
</TR> 
<TR> 
<TD valign="top" width="14"> 

<IMG height="42" src="images/postable/foot_l1.gif" width="14"></TD> 
<TD background="images/postable/foot_c.gif"><IMG height="42" src="images/postable/foot_l3.gif" width="36"></TD> 
<TD align="right" width="16"><IMG height="42" src="images/postable/foot_r.gif" width="16"></TD> 
</TR> 
</TBODY> 
</TABLE></span>{postrow.ATTACHMENTS}<span class="postbody">{postrow.SIGNATURE}</span><span class="gensmall">{postrow.EDITED_MESSAGE}</span></td>
			</tr></table></td></tr>
		</table></td>
	</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>
		<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>
	<tr> 
		<td class="spaceRow" colspan="2" height="1"><img src="templates/subSilver/images/spacer.gif" alt="" width="1" height="1" /></td>
	</tr>
	<!-- END postrow -->
	<tr align="center"> 
		<td class="catBottom" colspan="2" height="28"><table cellspacing="0" cellpadding="0" border="0">
			<tr><form method="post" action="{S_POST_DAYS_ACTION}">
				<td align="center"><span class="gensmall">{L_DISPLAY_POSTS}: {S_SELECT_POST_DAYS} {S_SELECT_POST_ORDER} <input type="submit" value="{L_GO}" class="liteoption" name="submit" /></span></td>
			</form></tr>
		</table></td>
	</tr>
</table>

<table width="100%" cellspacing="2" cellpadding="2" border="0" align="center">
  <tr> 
	<td align="left" valign="middle" nowrap="nowrap"><span class="nav"><a href="{U_POST_NEW_TOPIC}"><img src="{POST_IMG}" border="0" alt="{L_POST_NEW_TOPIC}" align="middle" /></a>   <a href="{U_POST_REPLY_TOPIC}"><img src="{REPLY_IMG}" border="0" alt="{L_POST_REPLY_TOPIC}" align="middle" /></a>   <a target="_blank" href="{U_PRINTER_TOPIC}"><img src="{PRINTER_IMG}" border="0" alt="{L_PRINTER_TOPIC}" align="middle" /></a></span></td>
	<td align="left" valign="middle" width="100%"><span class="nav">   <a href="{U_INDEX}" class="nav">{L_INDEX}</a> 
	  -> <a href="{U_VIEW_FORUM}" class="nav">{FORUM_NAME}</a></span></td>
	<td align="right" valign="top" nowrap="nowrap"><span class="gensmall">{S_TIMEZONE}</span><br /><span class="nav">{PAGINATION}</span> 
	  </td>
  </tr>
  <tr>
	<td align="left" colspan="3"><span class="nav">{PAGE_NUMBER}</span></td>
  </tr>
</table>

<table width="100%" cellspacing="2" border="0" align="center">
  <tr> 
	<td width="40%" valign="top" nowrap="nowrap" align="left"><span class="gensmall">{S_WATCH_TOPIC}</span><br />
	   <br />
	  {S_TOPIC_ADMIN}</td>
	<td align="right" valign="top" nowrap="nowrap">{JUMPBOX}<span class="gensmall">{S_AUTH_LIST}</span></td>
  </tr>
</table>
趕雞 ...............................

發表於 : 2004-09-24 19:31
ayaya
我去看時,你的簽名檔「阿里阿度」已經往下靠了!

只不過上面多了條分隔線,把它去掉用圖案代替會比較美觀…\r

至於如何在簽名檔上方加分隔線圖案的問題

請到天霜的星空故鄉學習

發表於 : 2004-09-24 21:02
sh85216s
哦 ! 我的意思是 :
原本相同的方式在 http://211.75.225.57/phpBB2/ 上是 OK 的,
但在 這裡NO OK

上面貼出來的 viewtopic_body.tpl 程式碼是 這裡 的.

當初大概是先裝 個性簽名往下對齊的 MOD ,如今在裝了其他 MOD 之後再來安裝,卻裝不起來,試了 2 天了,總是不得其門而入,特來求教,還請多多幫忙!!

發表於 : 2004-09-25 04:08
ayaya
阿里阿度老師…您那個 NO OK 的網站進不去…\r

不過我試著幫你改看看…改好再弄上來…

發表於 : 2004-09-25 05:13
ayaya
以下是改過的viewtopic.tpl

你試試看…\r

代碼: 選擇全部

<table width="100%" cellspacing="2" cellpadding="2" border="0"> 
  <tr> 
   <td align="left" valign="bottom" colspan="2"><a class="maintitle" href="{U_VIEW_TOPIC}">{TOPIC_TITLE}</a><br /> 
     <span class="gensmall"><b>{PAGINATION}</b><br /> 
       </span></td> \r
  </tr> 
</table> 

<table width="100%" cellspacing="2" cellpadding="2" border="0"> 
  <tr> 
   <td align="left" valign="bottom" nowrap="nowrap"><span class="nav"><a href="{U_POST_NEW_TOPIC}"><img src="{POST_IMG}" border="0" alt="{L_POST_NEW_TOPIC}" align="middle" /></a>   <a href="{U_POST_REPLY_TOPIC}"><img src="{REPLY_IMG}" border="0" alt="{L_POST_REPLY_TOPIC}" align="middle" /></a>   <a target="_blank" href="{U_PRINTER_TOPIC}"><img src="{PRINTER_IMG}" border="0" alt="{L_PRINTER_TOPIC}" align="middle" /></a></span></td> 
   <td align="left" valign="middle" width="100%"><span class="nav">   <a href="{U_INDEX}" class="nav">{L_INDEX}</a> 
     -> <a href="{U_VIEW_FORUM}" class="nav">{FORUM_NAME}</a></span></td> 
  </tr> 
</table> 

<table class="forumline" width="100%" cellspacing="1" cellpadding="3" border="0"> 
   <tr align="right"> 
      <td class="catHead" colspan="2" height="28"><span class="nav"><a href="{U_VIEW_OLDER_TOPIC}" class="nav">{L_VIEW_PREVIOUS_TOPIC}</a> :: <a href="{U_VIEW_NEWER_TOPIC}" class="nav">{L_VIEW_NEXT_TOPIC}</a>  </span></td> 
   </tr> 
   {POLL_DISPLAY} 
   <tr> 
      <th class="thLeft" width="150" height="26" nowrap="nowrap">{L_AUTHOR}</th> 
      <th class="thRight" nowrap="nowrap">{L_MESSAGE}</th> 
   </tr> 
   <!-- BEGIN postrow --> 
   <tr> 
      <td width="150" align="center" valign="top" class="{postrow.ROW_CLASS}"><span style="filter: glow(color={postrow.GLOWING_COLOR},strength=3); height:10px; color:white; padding:1px; font-size : 11px"><a name="{postrow.U_POST_ID}"></a><b>{postrow.POSTER_NAME}</b></span><br /><span class="postdetails">{postrow.POSTER_RANK}<br />{postrow.RANK_IMAGE}{postrow.POSTER_AVATAR}<br /><br /><fieldset><legend>小檔案 </legend><table width="100%" cellpadding="0" cellspacing="0" border="0"><br />{postrow.POSTER_FROM}<br />{postrow.POSTER_POSTS}<br />{postrow.RR_HACK}<br />{postrow.POSTER_JOINED}<br />{postrow.POSTER_ONLINE}</table></fieldset></span><br /></td> 
      <td class="{postrow.ROW_CLASS}" width="100%" height="28" valign="top" height="100%"><table width="100%" border="0" cellspacing="0" cellpadding="0" height="100%"> 
         <tr> 
            <td width="100%" valign="bottom"><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="bottom" nowrap="nowrap">{postrow.QUOTE_IMG} {postrow.EDIT_IMG} {postrow.DELETE_IMG} {postrow.IP_IMG}</td> 
         </tr> 
         <tr> 
            <td colspan="2" valign="top" height="5"><hr /></td> 
         </tr> 
         <tr> 
            <td colspan="2" valign="top" height="100%"><table style="table-layout:fixed"><tr><td style="word-wrap:break-word"><span class="postbody"><TABLE border="0" cellpadding="0" cellspacing="0" style="word-break:break-all"> 
<TBODY> 
<TR> 
<TD width="14"><IMG height="8" src="images/postable/top_l.gif" width="14"></TD> 
<TD background="images/postable/top_c.gif"></TD> 
<TD width="16"><IMG height="8" src="images/postable/top_r.gif" width="16"></TD> 
</TR> 
<TR> 
<TD background="images/postable/center_l.gif" valign="top" width="14"></TD> 
<TD bgcolor="#fffff1"> 
<P><span class = "postbody">{postrow.MESSAGE}</P></TD> 
<TD background="images/postable/center_r.gif" valign="top" width="16"><IMG height="8" src="images/postable/top_r2.gif" width="16"></TD> 
</TR> 
<TR> 
<TD valign="top" width="14"> 

<IMG height="42" src="images/postable/foot_l1.gif" width="14"></TD> 
<TD background="images/postable/foot_c.gif"><IMG height="42" src="images/postable/foot_l3.gif" width="36"></TD> 
<TD align="right" width="16"><IMG height="42" src="images/postable/foot_r.gif" width="16"></TD> 
</TR> 
</TBODY> 
</TABLE></span>{postrow.ATTACHMENTS}</td> 
         </tr></table>
</td></tr>
<tr>
<td colspan="2" valign="bottom">
<span class="postbody">{postrow.SIGNATURE}</span><span class="gensmall">{postrow.EDITED_MESSAGE}</span>
</td>
</tr>

      </table>

</td> 
   </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> 
      <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> 
   <tr> 
      <td class="spaceRow" colspan="2" height="1"><img src="templates/subSilver/images/spacer.gif" alt="" width="1" height="1" /></td> 
   </tr> 
   <!-- END postrow --> 
   <tr align="center"> 
      <td class="catBottom" colspan="2" height="28"><table cellspacing="0" cellpadding="0" border="0"> 
         <tr><form method="post" action="{S_POST_DAYS_ACTION}"> 
            <td align="center"><span class="gensmall">{L_DISPLAY_POSTS}: {S_SELECT_POST_DAYS} {S_SELECT_POST_ORDER} <input type="submit" value="{L_GO}" class="liteoption" name="submit" /></span></td> 
         </form></tr> 
      </table></td> 
   </tr> 
</table> 

<table width="100%" cellspacing="2" cellpadding="2" border="0" align="center"> 
  <tr> 
   <td align="left" valign="middle" nowrap="nowrap"><span class="nav"><a href="{U_POST_NEW_TOPIC}"><img src="{POST_IMG}" border="0" alt="{L_POST_NEW_TOPIC}" align="middle" /></a>   <a href="{U_POST_REPLY_TOPIC}"><img src="{REPLY_IMG}" border="0" alt="{L_POST_REPLY_TOPIC}" align="middle" /></a>   <a target="_blank" href="{U_PRINTER_TOPIC}"><img src="{PRINTER_IMG}" border="0" alt="{L_PRINTER_TOPIC}" align="middle" /></a></span></td> 
   <td align="left" valign="middle" width="100%"><span class="nav">   <a href="{U_INDEX}" class="nav">{L_INDEX}</a> 
     -> <a href="{U_VIEW_FORUM}" class="nav">{FORUM_NAME}</a></span></td> 
   <td align="right" valign="top" nowrap="nowrap"><span class="gensmall">{S_TIMEZONE}</span><br /><span class="nav">{PAGINATION}</span> 
     </td> 
  </tr> 
  <tr> 
   <td align="left" colspan="3"><span class="nav">{PAGE_NUMBER}</span></td> 
  </tr> 
</table> 

<table width="100%" cellspacing="2" border="0" align="center"> 
  <tr> 
   <td width="40%" valign="top" nowrap="nowrap" align="left"><span class="gensmall">{S_WATCH_TOPIC}</span><br /> 
      <br /> 
     {S_TOPIC_ADMIN}</td> 
   <td align="right" valign="top" nowrap="nowrap">{JUMPBOX}<span class="gensmall">{S_AUTH_LIST}</span></td> 
  </tr> 
</table>
順便給你個建議,在改版面時,可把table標籤的border調為1

這樣可以讓你看清整個版面的架構,改完了再調回0

如下圖:
圖檔
由這個圖可以很明顯看出為什麼簽名檔不會往下靠的徵結

不過我記得我在第一篇回覆就點出這個 key point 了

要簽名檔往下靠的架構應該要像下面這樣:
圖檔
像文章氣泡、簽名檔自動向下對齊、文章自動斷行等外掛都是html的簡單應用而已\r

在裝的同時應該要了解其原理,別忘了南投縣未來的主人翁都靠你們了 ;-)

發表於 : 2004-09-25 10:08
sh85216s
真的非常感謝你大力的幫忙,實在由衷的感激!!
目前縣網似乎掛了(?),架設在學校的"站"因此不通,目前也無法連線去試試,只好等縣網通了再來 try,結果再跟您報告.

再次謝謝你 !!

發表於 : 2004-09-25 20:10
sh85216s
線網目前仍因停電而停擺,
不過我已經在別處另行測試 OK ! (ro16)

真的很謝謝你! (:Y)