Thanks,
I can move the Paypal button on tpl_shopping_cart_default.php up and down by copy and paste the module where I want it on the shopping cart page but I cannot figure out how to move if from right to left. Can any help or provide hints?
Thanks,
I can move the Paypal button on tpl_shopping_cart_default.php up and down by copy and paste the module where I want it on the shopping cart page but I cannot figure out how to move if from right to left. Can any help or provide hints?
Yeah, you can do this with the stylesheet. If you are talking about the button that I think you are talking about then you can add this to the bottom of your stylesheet:
Adjust the 130px to whatever you want.Code:#PPECbutton{margin-left:130px}
If you want it to sit on the right hand side you could add:
Code:#PPECbutton{float:right;}
Nick
iszent.com
Thanks,
Thats great!
How did you know to call it #PPECbutton?
I assume I can tweal the google checkout and amazon checkout buttons if I know what to call them
To find the correct name either:
1. Look in the source code. In firefox this is VIEW>>>PAGE SOURCE or CTRL U. In internet explorer it is VIEW>>>SOURCE.
In this case you are looking for:
<div id="PPECbutton" class="buttonRow">
2. Use Firefox and install an add-on called web developer toolbar. This allows you to hover over an element and it will tell you its ID and class. Among other useful functions. This toolbar is a must-have.
Nick
iszent.com
Thanks,
Adjusting the Paypal button for the shopping cart page causes the Paypal button on the login page to move to a different position under the login box.
How can I move the logos on one page but keep them where they were on another page?
OOOOPS. Lets make it a bit more specific:
will only effect the #PPECbutton that is inside #shoppingcartBody.Code:#shoppingcartBody #PPECbutton{margin-left:130px}
Nick
iszent.com