Home › Forums › WoodMart support forum › Woocommerce Product Bundles – Grid Layout issue › Reply To: Woocommerce Product Bundles – Grid Layout issue
September 3, 2020 at 7:35 am
#223224
Elise Noromit
Member
Hello,
Please add this code to the Theme Settings > Custom CSS > Global:
@media (min-width: 768px) {
.bundled_products.columns-3 .product {
width: 33.33333333%;
}
}
.bundle_form .bundle_button {
margin-bottom: 20px;
}
.bundled_product .details {
margin-top: 15px;
}
.bundled_products {
display: flex;
flex-wrap: wrap;
margin-left: -15px;
margin-right: -15px;
}
.bundled_products .product {
padding-left: 15px;
padding-right: 15px;
width: 100%;
}
Best Regards