How can I remove the faint image border on my Craft theme site?

How can I get rid of the faint border around an image on my site? ( https://forbidden-root.com/ )

I am using the theme Craft.

I have checked the media settings and also tried editing the code with some of the answers I found to similar problems, but nothing has worked.

Hey @aliceg88

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


RESULT:

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

Best Regards,
Moeed

1 Like

hi sir

do you want this type of border

Hello @aliceg88
Its Artzen Technologies! We will be happy to help you today.

Add this below CSS to your base.css or any CSS File.

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

.collage-card.product-card-wrapper{
   border: none!important;
}

Let me know if need further assistance
Regards,
Artzen Technologies

1 Like

hi, @aliceg88

edited code > base.css or any CSS File past this code

.collage-card.card-wrapper.product-card-wrapper.color-background-1 {
    border: none !important;
}
1 Like