Add this to Pages › Website Tools › Custom CSS. Change 5 to the number you want.
:root {
--related-items-columns: 5; /* columns amount for tablet desktop */
}
@media (min-width: 768px) {
.ProductItem-relatedProducts .list-grid {
grid-template-columns: ~"repeat(var(--related-items-columns), minmax(0, 1fr))" !important;
}
}
On this page