Home › Forums › WoodMart support forum › Checkout page › Reply To: Checkout page
September 6, 2023 at 9:08 am
#493564
Artem Temos
Keymaster
Hi,
Try to add the following code snippet to the Custom CSS area in Theme Settings to fix this issue.
.woocommerce > .woocommerce-checkout {
display: flex;
align-items: flex-start;
flex-wrap: wrap;
column-gap: 30px;
}
.woocommerce > .woocommerce-checkout > *:not(:is(.customer-details, .checkout-order-review)) {
width: 100%;
}
.woocommerce > .woocommerce-checkout > *:not(:is(.customer-details, .checkout-order-review)) [role="alert"] {
margin-bottom: 30px;
}
This issue will also be fixed in the next update.
Kind Regards