Buy me a coffee

How to make Related Products Side by Side?

To make Related Products side by side instead of Stacked on mobile

How To Make Related Products Side By Side 1 Min

You can use this code to Website Tools > Custom CSS.

@media screen and (max-width:767px) {
    div.ProductItem-relatedProducts .list-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 5px 5px;
}}

 

How To Make Related Products Side By Side 2 Min

Result

How To Make Related Products Side By Side 3 Min