Hi,
Got a bit of an annoying problem :/
(this is just an example, in its simplest form
- the border="1" is just there to show the outline of the td, so you can see what I mean)
<tr>
<td align="center" width="65%" valign="middle">
<form>
<font class="top1">Web</font> <font class="top2">Search</font>
<input name="query" size="29" class="main">
<input type="image" alt="Submit" src="/news/images/submit.gif" align="absMiddle" border="0">
</form>
</td>
</tr>
</table>
...won't align the <td> contents to the middle of the cell.
..but this does (without the <form> bits)
<tr>
<td align="center" width="65%" valign="middle">
<font class="top1">Web</font> <font class="top2">Search</font>
<input name="query" size="29" class="main">
<input type="image" alt="Submit" src="/news/images/submit.gif" align="absMiddle" border="0">
</td>
</tr>
</table>
Anyone got any ideas why? Really getting on my nerves :(
TIA
Andy (mod)
andy@ultranerds.co.uk
IMPORTANT: I've now moved to ultranerds.co.uk, and the .com will no longer work!
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package (plugins total "value" $3,325 & rising, for just $350)| GLinks ULTRA Package PRO (plugins total "value" $5,625 & rising, for just $500)
Support Forum | Links SQL Plugins | DMOZ Dumps | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
Compare our different Plugin packages *new* Free CSS Templates
Got a bit of an annoying problem :/
(this is just an example, in its simplest form
Code:
<table border="1" height="50"> <tr>
<td align="center" width="65%" valign="middle">
<form>
<font class="top1">Web</font> <font class="top2">Search</font>
<input name="query" size="29" class="main">
<input type="image" alt="Submit" src="/news/images/submit.gif" align="absMiddle" border="0">
</form>
</td>
</tr>
</table>
...won't align the <td> contents to the middle of the cell.
..but this does (without the <form> bits)
Code:
<table border="1" height="50"> <tr>
<td align="center" width="65%" valign="middle">
<font class="top1">Web</font> <font class="top2">Search</font>
<input name="query" size="29" class="main">
<input type="image" alt="Submit" src="/news/images/submit.gif" align="absMiddle" border="0">
</td>
</tr>
</table>
Anyone got any ideas why? Really getting on my nerves :(
TIA
Andy (mod)
andy@ultranerds.co.uk
IMPORTANT: I've now moved to ultranerds.co.uk, and the .com will no longer work!
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package (plugins total "value" $3,325 & rising, for just $350)| GLinks ULTRA Package PRO (plugins total "value" $5,625 & rising, for just $500)
Support Forum | Links SQL Plugins | DMOZ Dumps | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
Compare our different Plugin packages *new* Free CSS Templates

