Hi Simon.
To center terms and conditions, you need to add following CSS code to you theme’s style.css:
div.asp_product_tos_input_container {
text-align:center;
}
Correct code to make all payment buttons text bold is this:
div.asp_product_buy_button button span {
font-weight: bold;
}
You can also make your button’s width not to be 100% as it looks kinda weird in my opinion. In order to make them normal width but centered, following code should be added to page:
div.asp_product_buy_button {
text-align: center;
}
div.asp_product_buy_button button {
width: auto;
}
This is just basic CSS coding, so your webdev can do that for you within like 5 mins 😉 Since there is a bunch of various themes, we can’t make the buttons look the same on every site. So some tweaks required on per-site basis anyway.
Alexander, thank you for the above code! It has worked perfectly and I have amended the buttons across the site. I’m doing as much on the site on my own so really appreciate the support you have given.
Kind regards
Simon
No problem! 🙂 Let us know if we can assist any further.