How do I add a grid around my products like shown below. I’m using the alchemy theme
Hi @BJVNTG , can you share your store url?
yup anything similar to that would be good!
mobile and desktop please
Go to your style.css file and add the following snippet
.product-list .card {
margin: 0 !important;
border: 1px solid #505050 !important;
}
Add the following code snippet to the same file :
.product-list {
justify-content: center !important;
}
thankyou so much! one final thing, how do I center the font and pricing under the listings?
You can center the font and pricing using this code :
.card__content {
text-align: center !important;
}
Add this code to make it center on phone :
.product-list {
margin: 0 !important;
}
works great, is there anyway to change the border color to black?
Yeah the code snippet that I provided you :
.product-list .card {
margin: 0 !important;
border: 1px solid #505050 !important;
}
just change #505050 with #010101.








