Remove Border From Product Image in Featured Collection

Using the Dawn Theme V11.

In the Featured Collection, under product card, I have the image ratio to square and the image shape to default.

While there is a note that says, “Standard-styled cards have no borders when an image shape is active,” there is a thick grey border around the images when using the default image shape.

How can I remove the border?

1 Like

Hi @ChevieJacob

Would you mind to share your Store URL website? with password if its protected. Thanks!

f1d30e.myshopify.com

1 Like

Thank you. Try this one.

  1. From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  2. Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  3. In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
.card__inner.color-accent-1.gradient.ratio {
    border: none;
}

And Save.

I hope it help.

That got rid of the grey, but now the clear borders are overlapping.

1 Like

Try this one.

Same Instruction.

.card__inner.color-accent-1.gradient.ratio {
    border: none;
    overflow:hidden
}

I hope it help.

I found the setting under Theme Settings - Product Cards.

Issue Resolved.

1 Like