Quote:
Yesterday at 09:36 PM David_McPherson said this in Post #987
It is a great hack...
Can anyone tell me if there is a way to CENTER This text box? I'm killing myself on this one... Thanks.
|
Find this code:
Code:
<td bgcolor="{secondaltcolor}">
<table cellpadding="0" cellspacing="0" border="0">
<tr valign="top">
<td><textarea name="message" rows="18" cols="66" wrap="virtual" tabindex="1" style="background-image: url('images/head/tmr.gif'); background-repeat: no-repeat; background-attachment: fixed;" class="quick"></textarea><br>
<smallfont><a href="javascript:checklength(document.vbform);">[check message length]</a></smallfont></td>
</tr>
</table>
</td>
Replace it with this code:
Code:
<td bgcolor="{secondaltcolor}" align="center" valign="middle">
<table cellpadding="0" cellspacing="0" border="0">
<tr valign="top">
<td><textarea name="message" rows="18" cols="66" wrap="virtual" tabindex="1" style="background-image: url('images/head/tmr.gif'); background-repeat: no-repeat; background-attachment: fixed;" class="quick"></textarea><br>
<smallfont><a href="javascript:checklength(document.vbform);">[check message length]</a></smallfont></td>
</tr>
</table>
</td>