I am trying to adjust the code so that only 3 products appear per row maximum in my Shopify Kingdom theme home page within the featured collection. Thanks for any help!
password please
mimihali2024
From your theme code editor go to component-product-item.css and add this code at the very bottom
.collection–grid {
-ms-grid-columns: 1fr 1fr 1fr;
grid-template-columns: 1fr 1fr 1fr;
}