I need to be able to limit height of the product image
Started by: alexandreL-2
in: Toolset Professional Support
Quick solution available
Problem:
The user has created a content template to display posts, and uses the Product's image block. The image was too long and he wanted to limit its height.
Solution:
We were able to get that by custom CSS code:
.woocommerce div.product div.images img {
display: block;
width: auto;
max-height: 600px;
box-shadow: none;
}
2
9
4 years, 11 months ago
alexandreL-2
URGENT: The archives doesn’t work, I tried littelry
Started by: alexandreL-2
in: Toolset Professional Support
Quick solution available
Problem:
The user has created an archive template that displays the posts in a grid. But in the frontend the design was corrupt.
Solution:
It is a style's conflict with the theme and WooCommerce. We were able to fix it with custom CSS code.
.woocommerce .wc-columns-container.wc-columns-4 .products {
grid-template-columns: none !important;
}
2
3
4 years, 11 months ago
alexandreL-2