Hey @Web_Services,
- I checked your live site and the Cart total and Interested sections are aligned side by side, if you want to achieve this then simply add the following code in the Theme Options > CSS:
.woocommerce .bolt-checkout-button.large-width {
max-width: none!important;
}
.woocommerce #pay_with_amazon {
text-align: left;
}
@media screen and (min-width: 768px) {
.woocommerce .cart-collaterals {
display: flex;
}
}
@media screen and (max-width: 767px) {
.woocommerce .cart-collaterals {
display: flex;
flex-direction: column-reverse;
}
}
- Alternatively if you want to move the cart totals section above the “You may be interested in” section, the use this code instead:
.woocommerce .bolt-checkout-button.large-width {
max-width: none!important;
}
.woocommerce #pay_with_amazon {
text-align: left;
}
.woocommerce .cart-collaterals {
display: flex;
flex-direction: column-reverse;
}
The above codes will also align your buttons too, just make sure to use one of the given codes that suits your need and not both of the codes however when I checked your cart page I couldn’t find the green “proceed to checkout” button as shown in your screenshot.
Here are some related links for further reading, this could help you in finding and implementing some CSS fixes:
Don’t forget to clear all caches including your browser’s cache after adding the code. Let us know how this goes!