1 頁 (共 1 頁)

[問題]簽名檔加圖片外框 位置無法對齊

發表於 : 2003-06-13 17:14
frank1401
問題外掛:簽名檔加圖片邊框
參考連結:http://phpbb-tw.net/phpbb/viewtopic.php?t=16028
使用版本:phpBB 2.0.3)
網站位置:http://karst.vicp.net
狀況描述:

麻煩幫幫忙
簽名檔的外框無法對齊

我的程式碼\r

代碼: 選擇全部

if ( $user_sig != '' )
{
$user_sig = '<br /><br /><table width="95%" border="0" cellspacing="0" cellpadding="0" height="150">
<tr>
<td width="40"><img src="images/hu.gif" width="40" height="40"></td>
<td background="images/4top.gif"> </td>
<td width="42"><img src="images/mu.gif" width="40" height="40"></td>
</tr>
\n<tr>
<td background="images/4left.gif"> </td>
<td height="72"><table style="table-layout:fixed"><tr><td style="word-wrap:break-word"><span class="postbody">'
. str_replace("
", "
<br />
", $user_sig) .'</span></td></tr></table></td>
<td background="images/4right.gif"> </td>
</tr>
<tr>
<td valign="top"><img src="images/hs.gif" width="40" height="40"></td>
<td background="images/4down.gif"> </td>
<td align="down"><img src="images/ms.gif" width="40" height="40"></td>
</tr>
</table>';
}
[/url]

發表於 : 2003-06-13 19:38
依夢兒
把程式碼置換成下面這一段:

代碼: 選擇全部

if ( $user_sig != '' )
{
$user_sig = '<br /><br /><table width="95%" border="0" cellspacing="0" cellpadding="0" height="150">
<tr>
<td><img src="images/hu.gif"></td>
<td background="images/4top.gif"></td>
<td><img src="images/mu.gif"></td>
</tr>
<tr>
<td background="images/4left.gif"></td>
<td height="72"><table style="table-layout:fixed"><tr><td style="word-wrap:break-word"><span class="postbody">'
. str_replace("
", "
<br />
", $user_sig) .'</span></td></tr></table></td>
<td background="images/4right.gif"></td>\r
</tr>
<tr>
<td><img src="images/hs.gif"></td>
<td background="images/4down.gif"></td>
<td><img src="images/ms.gif"></td>
</tr>
</table>';
}

發表於 : 2003-06-14 18:25
frank1401
謝謝 已經解決ㄌ
感謝您的幫忙^^