Hi, I’m trying to change the terms and conditions styling that is on the checkout page but am not having any luck. A screenshot shows how it is currently.
I want to move the “I’ve read…” terms message and checkbox above the actual Checkout button. I also would like to move the checkbox to the left side, rather than have it on the right.
Any help is appreciated!
Hey Jox!
Thank you for the screenshot but it’s not working. Do you mind if we take a look at the actual website? A screenshot of what you’re trying to do with the checkout page will help.
Cheers!
Ismael
The image isn’t showing up in the post, but if you right-click on it and open it in a new tab it shows it correctly. The site is being developed locally so I can’t give you access to it.
Hi!
Thank you for the info.
Please use this on Quick CSS or custom.css:
p.form-row.terms {
position: absolute;
bottom: 50px;
}
#top #payment #place_order {
float: none;
margin: 0 auto;
margin-top: 20px;
}
p.form-row.terms label {
position: relative;
left: 20px;
}
p.form-row.terms input {
position: absolute;
left: 13px;
bottom: 4px;
}
Cheers!
Ismael
Thanks for the awesome theme support! I needed to do this, and it worked great.