Hi Martin,
Thanks for reaching out.
The screenshots are from three different sections, first one is on the Cart page and 2nd and 3rd one is in Checkout page. On the Checkout page the buttons are placed for the ** stepwise** form.
All these buttons are correctly placed as per the default style of the theme, except the step buttons. Now if you want all these buttons to be right aligned, you need to add a few custom CSS code to Theme Options > CSS.
.woocommerce .wc-proceed-to-checkout
{
text-align: right !important;
}
.wc-gzd-order-submit, .step-buttons
{
text-align: right !important;
}
Remember that the above code will work if copied as it is and don’t conflict with any existing style.
Please note that the code provided serves only as a guide to help you get started custom coding on your own if there’s no option offered in our theme or the products we bundle.
We do not provide support for custom codes that means we can’t fix it in case it conflicts with something on your site nor will we enhance it.
Thanks