Crave theme - How do I change the border color around the product images?

Right now the color is yellow, I just want to know how to change it to green. Thanks in advance

If you post a url to your store and password if password protected, I’m sure someone will be able to give you a css snippet to make the change you want.

Hii @Breena

Welcome to the Shopify community!
Thanks for your good question.

kindly share your store URL, so that
I will check out the issue and provide a solution.

Hi @Breena ,

Go to Assets > component-card.css and paste this at the bottom of the file:

.card .card__inner{
	border-color: #008000 !important;
}
.card .card__inner:after{
	box-shadow: var(--card-shadow-horizontal-offset) var(--card-shadow-vertical-offset) var(--card-shadow-blur-radius) #008000 !important
}

Hope it helps!

Hello, what if i wanted to remove the borders completely. I do not want boarder surrounding my photos.

If you’re using the same theme and the above solution worked for the other person you could do:

.card .card__inner{
	border: none!important;
}
.card .card__inner:after{
	box-shadow: unset!important
}

If you post a link to your store/page where you have the issue I can check for you to be sure.