How can I center my last product in the row?

Hello,

I would like your help with moving my last product to the center/middle of the row.

Here is the collection link: https://wowberrybites.myshopify.com/collections/first-bites-bundles

Thanks for your time in advance!

@winnado11 - please add this css to the very end of your theme.min.css file and check

@media screen and (min-width:750px){
.collections__products.featured-collections__products{
    justify-content: center;    display: flex;    flex-wrap: wrap;}

.featured-collections__products .featured-collections__item {flex-basis: 30%;}
}
1 Like

@suyash1 Thank you so much!