Screenshot attached with the issue.
There seems to be a default grey background for images/image banners with a transparent background. I’ve tried adding code, but nothing changed.
When I use an image banner with white backgrounds, there would be a very thin grey line around the borders depending on the browser size (it comes and goes).
Neither is ideal, so hoping to fix the grey background issue via code
1 Like
Hello @Technical_SNZQ
Please provide your store URL and, if it is password protected, please share the password so I can review it and provide a solution.
Hi @Technical_SNZQ ,
This is Henry at PageFly - Shopify Advanced Page Builder app.
You can try this code by following these steps:
Go to Online store => themes => actions => edit code and add this code on file theme.liquid before tag
Hope this answer helps.
Best regards,
Henry | PageFly
Hi @Technical_SNZQ ,
I understand that you want to remove the background color. You can try this one.
- From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
- Find the theme that you want to edit and click on “Actions” and then “Edit code”.
- In the “Assets” folder, click on “theme.scss.liquid, styles.scss.liquid or base.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
- And Save.
.banner__media.media {
background: transparent;
}
Result:
I found also your Paragraph below are not black color. Something like gray. If it on purpose no need to change but if not. then you can change it.
Find the .color-background-1 in the base.css file.
and remove or put comment sign.

/* color: rgba(var(–color-foreground), 0.75); */
I hope it help.