Can you help me with my problem in the product archive section?
-
In the product archive section, there are gaps in the short description section of the products in this way. How can I remove these spaces?
I am sharing the css codes that I am currently using with you and I marked my problem in the photo.
.tax-product_cat .product-list-content .woocommerce-product-details__short-description p:nth-child(2) {
display: none;
}
.product-list-content .woocommerce-product-details__short-description p {
width: 35em !important;
height: 8em !important;
white-space: nowrap !important;
overflow: hidden !important;
text-overflow: ellipsis !important;
}
Attachments:
You must be
logged in to view attached files.
Hello,
Try to add following custom css code in theme setting > css > Global css:
.product-list-content .woocommerce-product-details__short-description p {
height: 3em !important;
}
Best Regards.