viper357 Posted December 3, 2012 Share Posted December 3, 2012 Hi, I have just enabled paypal express checkout but the paypal button is hidden and can not be clicked, see pic attached, how do I fix this? Using 1.4.9.0 Thank You. Link to comment Share on other sites More sharing options...
viper357 Posted December 4, 2012 Author Share Posted December 4, 2012 Anyone? Link to comment Share on other sites More sharing options...
viper357 Posted December 6, 2012 Author Share Posted December 6, 2012 Hello, any support? Link to comment Share on other sites More sharing options...
viper357 Posted December 6, 2012 Author Share Posted December 6, 2012 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 More sharing options...
Pedro Henrique Posted December 6, 2012 Share Posted December 6, 2012 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 More sharing options...
Recommended Posts