How to remove grey lines around transparent images in DAWN theme?

I’m now using the DAWN theme, and my transparent images are bordered by these grey fine lines. Can you guys help me?

@narc1s Please send me store url.

Hi Narc1s.

This is PageFly - Free Landing Page Builder. I would love to provide my advice for your store based on 6 years of providing solutions for about 100.000+ active Shopify merchants.

You can go to Online store => themes => Actions => Edit code and paste this code on base.css.

.ClassName_Image{

border: 1px solid #b1154a;

}

Or you can send me the url of your website so I can guide you in more detail.

I hope my above information can help you

Kind regards

PageFly

@narc1s ,

Can you please share the store URL…

@narc1s ,

.section-template--16331358306557__main-padding .rte img {
    border: none;
}

Add this css at the bottom of Online Store->Theme->Edit code->Assets->base.scss.liquid

1 Like

this doesn’t work

it workeddddd thx

@narc1s Go to assetes/base.css and paste below css at bottom of file.

.section-template--16331358306557__main-padding .rte img
{
border: none !important;
}