Search Divi Cart Pro Documentation
Search for answers or browse our knowledge base.
Equalize height for large product title
To make the column height equal please add the following CSS code in Divi Theme Option.
.dcp_woo_products_layout, .dcp_woo_products_isotope_item {
display: flex !important;
flex-wrap: wrap !important;
}
.dcp_single_woo_product {
height: 100%;
display: flex;
flex-wrap: wrap;
flex-direction: column;
}
.dcp_single_woo_product_content {
flex-wrap: wrap;
justify-content: flex-end;
display: flex;
flex-direction: column;
flex-grow: 1;
}