How do I centre the two products in the shop now section of my site?

I don’t want the two products I have for sale to be left aligned. I want them to be centred

https://maryandmason.co.nz/pages/our-community

Hi @heyspang

Your website is password protected. Please remove the password so I’ll check and give you better solution for thsi.

Thanks

hello @heyspang

please Go to Online Store->Theme->Edit code then go to assets/theme.css ->paste below code at the bottom of the file.

@media only screen and (min-width: 639px){
#shopify-section-shop-now .flickity-viewport .flickity-slider{
	transform: translateX(-50% ) !important;
}
}

@LuckyNigam

Please add the following code at the bottom of your assets/theme.css file.

@media only screen and (min-width: 639px){
#shopify-section-shop-now .flickity-viewport .flickity-slider{
	transform: translateX(-50% ) !important;
}
}

Thanks!