Add Border To Only Images of Features Collection Using Brooklyn Theme

Hi, I need help with making border to images only of my featured collection.

Thanks

2 Likes

Hello There,

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

Hi @LeoRobert ,

Please share your store URL and if your store is password protected then please provide password too.

So that we can help you.

Thank you.

My URL: https://uallo.com/

Hi @LeoRobert ,

You can follow the instruction below:

  1. Go to Online Store->Theme->Edit code
  2. Asset->/theme.scss->paste below code at the bottom of the file:
#shopify-section-featured-collections .collection-grid__item-link {
    border: 1px solid black;
}

If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.

Hello There,

  1. In your Shopify Admin go-to online store > themes > actions > edit code
  2. Find Asset > timber.scss.css and paste this at the bottom of the file:
.collection-grid__item-overlay.grid__image {
border: 2px solid #000;
border-radius: 6px;
}

Screenshot:-Screenshot by Lightshot

This works but not on my wanted collection. The collection I mentioned of is right under “New In” (screenshot attached).

Can you help me add border like the screenshot below but add only to images? thanks.

Hi @LeoRobert ,

You can follow the instruction below:

  1. Go to Online Store->Theme->Edit code
  2. Asset->/theme.scss->paste below code at the bottom of the file:
.template-index .grid-product__wrapper {
    border: 1px solid black;
}

If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.

it ended up with borders around image, title and price. I only wish to add border to image only

Hello There,

  1. In your Shopify Admin go-to online store > themes > actions > edit code
  2. Find Asset > timber.scss.css and paste this at the bottom of the file:
.template-index .product--wrapper {
border: 1px solid black;
border-radius: 6px;
}

it work! thank you so much

1 Like

Thank you for your response. It’s good to know that it’s worked for you.

If helpful then please Like and Accept the Solution All.