Archived topic
How to sort reviews
1 reply · Started by xinghui on September 13, 2022
Viewing posts 1–2 of 2
I use the Reviews by Category module to add product reviews, but its display format is vertical, I want it to be displayed horizontally, is there any way?
this is my site display image url:https://i.postimg.cc/dVJ2ZqBN/review-order.jpg
this is example image url:https://i.postimg.cc/nLDhHmDy/order-request.png
Hi there,
you should check with the plugin author for advice on that.
The most i can offer is this CSS to make it a grid:
@media(min-width: 769px) {
.wc-block-components-review-list.wc-block-components-review-list {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-gap: 40px;
}
}
This archived topic is closed to new replies.