- This topic has 2 replies, 2 voices, and was last updated 12 years, 6 months ago by .
Viewing 3 posts - 1 through 3 (of 3 total)
Viewing 3 posts - 1 through 3 (of 3 total)
- You must be logged in to reply to this topic.
Support site for Tips and Tricks HQ premium products
by
Tips and Tricks HQ Support Portal › Forums › WP eStore Forum › WP eStore Tweaks › Best way to move checkout button to right side
Hi,
Following instructions on this forum, I changed our Paypal Checkout button to something that stands out more and I made it larger, however I would also like it to appear on the right side of the shopping cart under the total rather than on the left. What would be the best way to do this?
I added a new image and changed the css to:
.eStore_paypal_checkout_button{
margin-top:5px;
padding:4px;
border:1px solid #ccc;
width:160px;
height:61px;
}
I tried adding some css to send it right but thought it went right, it also overlapped the net item down.
Here’s what I added:
position:absolute;
right:5px;
I know enough css to be dangerous!
Can you please suggest what I use to move the button to the right?
Thanks!
Michael
Hmmm… I tried that, but the button I’m working with is actually the .eStore_paypal_checkout_button
I added the following to .eStore_paypal_checkout_button and now it looks right and works:
position:relative;
right:30px;
Thanks!
Michael