首先,现在购买paypal按钮工作正常,但它们都垂直坐着,一个在另一个上面。在生成paypal的代码之前,我让它们在两行中很好地和对称地组织起来。
以下是他们生成的其中一个按钮的示例:
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="hidden" name="hosted_button_id" value="QEB6T733SAMR2">
<input type="image" src="http://www.teegar.net/images/home/ball-1.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
<img alt="" border="0" src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" width="1" height="1">
</form>
其余按钮继续这样,数量不同。
我试图从除最后一个按钮之外的所有标签中删除</form>
标签,这样我就可以格式化图形,但却发现所有按钮都放在paypals购物车中。
我知道我仍然是HTML新手,但我希望能得到一些帮助。
答案 0 :(得分:0)
您是否尝试将它们放入各个单元格的表格中?
答案 1 :(得分:0)
像Cistoran说的那样使用像这样的表
<table border="0" width="what ever you want the width to be in percentage or pixels">
<tr>
<td>
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="hidden" name="hosted_button_id" value="QEB6T733SAMR2">
<input type="image" src="http://www.teegar.net/images/home/ball-1.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
<img alt="" border="0" src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" width="1" height="1">
</form>
</td>
<td>
then the next one and so on so on
</td>
</tr>
</table>