贝宝按钮和文字之间的距离

时间:2016-01-14 22:42:29

标签: html css paypal

start page我放了一个PayPal捐款按钮。按钮上方和下方是一行文字。按钮与上述文本的距离是正常的。但是按钮下方文本的距离太大。 我看了FireBug,但是我对Html和CSS不是很好,也无法弄清楚问题。 有人可以告诉我如何设置文本和按钮的距离相同吗?

这是我添加到旁边的代码:

<div class="top-3" style="width:50%;">
<div class="module_margin">
<div class="module_">
<div class="module">
<div class="module_padding">
<div class="module_content">
<div class="custom">
<p style="text-align: center;">Wir freuen uns über Eure Spende für die Clan-Kasse.</p>
<form target="_top" method="post" action="https://www.paypal.com/cgi-bin/webscr">
<input type="hidden" value="_s-xclick" name="cmd">
<input type="hidden" value="PZJ5MPQQPDYVY" name="hosted_button_id">
<input type="image" border="0" alt="Jetzt einfach, schnell und sicher online bezahlen – mit PayPal." name="submit" src="https://www.paypalobjects.com/de_DE/DE/i/btn/btn_donateCC_LG.gif" style="display: block; margin: 0 auto;">
<img width="1" height="1" border="0" src="https://www.paypalobjects.com/de_DE/i/scr/pixel.gif" alt="">
</form>
<p style="text-align: center;">Vielen Dank, Eure GADIV</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>

谢谢和问候,

Blubbfisch

2 个答案:

答案 0 :(得分:0)

我会建议在你的表单中添加一些东西,以便你能够通过css找到它,就像一个独特的类,例如:

<form action="https://www.paypal.com/cgi-bin/webscr" class="paypal_form" method="post" target="_top">

现在您拥有一个独特的课程,您可以识别此表单中的文字和按钮,并且您可以使用line-heightmargin个属性。既然你实际上并没有提供一个带有文本的例子,我无法给出确切的答案,但你可以从以下内容开始:

 .paypal_form input[type="image']{margin-bottom:2px;line-height:5px;}
 .paypal_form a {line-height:5px;}

答案 1 :(得分:0)

图片中的空白可能是问题吗?

我拿了你的片段并添加了以下内容,以表明距离是相同的,但空白是不同的。这会产生一种错误,即线间距关闭

#this is the very first thing to do
import os, subprocess, shutil
#see is gs is avaible
if shutil.which("gs") is None:
   print("GhostScrip is not avaible, search for it")
   try:
      gs = subprocess.Popen(["which","gs"],stdout=subprocess.PIPE)
      gs_path = gs.stdout.read()
      gs_path = gs_path.decode() if isinstance(gs_path,bytes) else gs_path
      print("GhostScrip found in",gs_path)
      os.environ["PATH"] += ":"+ os.path.dirname(gs_path)
   except Exception as e:
      raise Warning("GhostScrip not found, this program may fail")

del subprocess
del shutil

#then everything else