[Support request] How to sort reviews

Home Forums Support [Support request] How to sort reviews

Home Forums Support How to sort reviews

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #2341583
    xinghui

    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

    #2341608
    David
    Staff
    Customer Support

    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;
        }
    }
Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.