PDA

View Full Version : A Quick HTML Question


Gary King
07-03-2002, 11:05 PM
I have attached an image, showing the quick reply hack that is installed on my forums. The arrow shown there means that I would like to extend the table with the text that says Post Reply to the end [the end of the arrow]. So any suggestions?

And oh btw, here is part of my code for the quick reply:

<table cellpadding="0" cellspacing="0" border="0" bgcolor="#0A293E" width="95%" align="center"><tr><td>
<table cellpadding="4" cellspacing="1" border="0" width="100%">
<tr>
<td bgcolor="#1D6AA0" colspan="2"><normalfont color="#EEEEFF" class="thtcolor"><b>Post Reply</b></normalfont></td>
</tr>
<tr>
<td bgcolor="#1C5780" valign="top" nowrap><normalfont><b>Your Reply:</b></normalfont></td><td bgcolor="#1C5780" valign="top" nowrap>$clickysmilies</td>
<td bgcolor="#1C5780">
<table cellpadding="0" cellspacing="0" border="0">
<tr valign="top">
<td><textarea name="message" rows="7" cols="$textareacols" wrap="virtual" tabindex="1"></textarea><br>
<smallfont><a href="javascript:checklength(document.vbform);">[check message length]</a></smallfont></td>
</tr>
</table>
</td>
</tr>
</table>
</td></tr></table>

Xenon
07-03-2002, 11:11 PM
<td bgcolor="#1D6AA0" colspan="2"><normalfont color="#EEEEFF" class="thtcolor"><b>Post Reply</b></normalfont></td>

replace the colspan="2" with colspan="3" ;)

Gary King
07-03-2002, 11:20 PM
Originally posted by Xenon
<td bgcolor="#1D6AA0" colspan="2"><normalfont color="#EEEEFF" class="thtcolor"><b>Post Reply</b></normalfont></td>

replace the colspan="2" with colspan="3" ;)

That works for me :D

Thx :)