Home Forums WoodMart support forum Woocommerce Product Bundles – Grid Layout issue Reply To: Woocommerce Product Bundles – Grid Layout issue

#223224

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