Jump to content

Paypal button hidden ?


Recommended Posts

I figured it out.

 

Go to /modules/paypal/css and edit the paypal.css file

 

Near the bottom find:

 

#container_express_checkout {
text-align: left;
margin: auto
}

 

replace it with:

#container_express_checkout {
text-align: left;
margin-top: -40px
}

 

That moves the Paypal button upwards and now allows buyers to click the button.

Link to comment
Share on other sites

Hello viper357.

 

For reasons of incompatibility of IE with negative margin, I suggest using the property "clear: both" just below the last layer to float in question. This causes the actual "float" be discerned by the remainder of the code below.

 

ex:

<ul style="float: left"> . . . </ul>

<div class="clear: both"></div>

<p id="container_express_checkout"> . . .</p>

--

Olá viper357

 

Por motivos de incompatibilidade do IE com margem negativa, sugiro utilizar a propriedade "clear: both" logo abaixo da ultima camada em float em questão. Isso faz com que o próprio "float" seja enxergado pelo restante do código abaixo.

 

ex:

<ul style="float: left"> . . . </ul>

<div class="clear: both"></div>

<p id="container_express_checkout"> . . .</p>

Link to comment
Share on other sites

×
×
  • Create New...