Hi There!
I need a code for the Featured Collection section that will centre the images for the products. I am working on the Expanse theme. Thanks!
Hi There!
I need a code for the Featured Collection section that will centre the images for the products. I am working on the Expanse theme. Thanks!
Hi
try using css in image element
<img style="display: block; margin-left: auto; margin-right: auto; width: 50%" src=(your actual source)>
like this or apply css to product image class
.image_class{ display: block; margin-left: auto; margin-right: auto; width: 50%; }
This worked for me.
@vjomaa
To make image center of section follow this steps :
.new-grid.product-grid{
justify-content: center !important;
}
Hope this works well.
Best Regards !
This worked…THANK YOU!!