Brooklyn Theme : How to remove gray overlay from collection thumbnails and product thumbnails?

Hi,

Can somebody help me with this? I have seen the old answers for this topic but there is a new coding and can`t find the solution here.

Thanks for your help.

Hello There,
Please share your store URL.
So that I will check and let you know the exact solution here.

Here is the URL , thanks https://ekszerstudio.com/

Gray background on products are just in mobile version.

Hello There,

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset >theme.scss.css and paste this at the bottom of the file:
.collection-collage__item-wrapper .collection-grid__item-overlay:after {
    display: none;
}

@medea

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

.collection-collage__item-wrapper .collection-grid__item-overlay:after {
    display: none;
}

Thanks!

1 Like

Had the same issue.

This worked for me! Thank you.