Shop – 4 Products per row list view bug
-
Products columns
When I choose 4 products per row list view is bugged.
*It happens only for “4” products per row.
in all other options, list view working fine.
thanks
Attachments:
You must be
logged in to view attached files.
Hi,
The problem is caused by the following custom CSS added to your website https://gyazo.com/cb9e763dcd8e2a992d5f1174c5984613
Regards
Thank you for your quick replay,
It did solved my problem.
I’m trying to fix short description in list view
so it will show as on a product page
i tried adding css:
display: table-caption;
to:
woocommerce-product-details__short-description
but it doesnt work correctly.
any idea how to solve this?
thanks again!
Try to add the following code snippet to the Custom CSS area in Theme Settings to fix this issue.
.product-grid-item br {
display: block!important;
}
Awesome!
Thank you very much!