How can I eliminate the border around product images?

Hello,

There seems to be this border around my product images on the collection as well as product pages.

Here is the border I am refering to:

Anyway we can remove this border?

Store URL: https://merciane.com/

Thank you!

Hello @MotionStore111

You can try this code: it will be helpful to you
Go to the Online Store->Theme->Edit code->Assets->base.css>Add this code at the bottom.

img.product-item-img.img-fluid.mb-4.rounded {
    border: 1px solid var(--bs-border-color);
    padding: 0.25rem;
}
1 Like

@oscprofessional
Doesn’t seem to apply any change.

Hello @MotionStore111

You can try this code: it will be helpful to you
Go to the Online Store->Theme->Edit code->Assets->base.css>Add this code at the bottom.

img.product-item-img.img-fluid.mb-4.rounded {
    border: none!important;
    
}
1 Like

Hello @MotionStore111

You can try this code: it will be helpful to you
Go to the Online Store->Theme->Edit code->Assets->base.css>Add this code at the bottom.

.img-thumbnail {
    border: none !important;
}

Hey @MotionStore111

Follow these Steps:

  1. Go to Online Store
  2. Edit Code
  3. Find theme.liquid file
  4. Add the following code in the bottom of the file above tag

If I managed to help you then, don’t forget to Like it and Mark it as Solution!

Best Regards,
Moeed

1 Like

Thank You Moeed that does it.