Home Forums WoodMart support forum Customize shop page Reply To: Customize shop page

#26030

Bogdan Donovan
Keymaster

Try to add the following code snippet to the Custom CSS area in Theme Settings to fix this issue.

div.product-list-item .product-element-top {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
}

@media (max-width: 1024px) {
div.woodmart-products-per-page,
div.woodmart-products-shop-view {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}
}

@media (max-width: 767px) {
    div.product-list-item .product-element-top {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
}
}

Regards