I’m having an issue with my Shopify theme where images I upload aren’t displayed in their raw form. Instead, a dark transparent shadow appears over the image, blending it into the overall theme.
Does anyone know how to remove this overlay effect or adjust the settings so that the images appear exactly as uploaded, without the shadow or blending effect?
Im using a custom theme
Website: https://velocc.shop/
1 Like
Hi @LianYing
Which image are you referring to?
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 “base.css, style.css or theme.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:
.banner__media:after, .slideshow__media:after {
content: "";
position: absolute;
background: transparent !important;
opacity: 1 !important;
}
And Save.
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
1 Like