Posted by walosaw on 10/18/07 07:30
On Oct 17, 11:09 pm, kaiwin...@gmail.com wrote:
> Hello all,
>
> I have the following simple html how can I display the second table
> content like the first one. As i have add the <form>payment</form>
> tag. Any method to remove the spacing.
>
> <table border="0" cellspacing="0" cellpadding="0">
> <tr>
> <td>[history | payment]</td>
> </tr>
> </table>
>
> <table border="0" cellspacing="0" cellpadding="0">
> <tr>
> <td>[history | <form>payment</form>]</td>
> </tr>
> </table>
>
> Thx,
>
> Wing
This is a quck fix though it would be better to have all your style
sheet code in a seperate css file
change
<td>[history | <form>payment</form>]</td>
to
<td>[history | <form style="display:inline">payment</form>]</td>
Cheers
[Back to original message]
|