We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more

How to Remove Dark Transparent Overlay on Images in Theme

Solved

How to Remove Dark Transparent Overlay on Images in Theme

LianYing
Tourist
7 0 2

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/

 

Accepted Solution (1)
Made4uo-Ribe
Shopify Partner
10211 2427 3079

This is an accepted solution.

Try this one. 

  1. From your Shopify admin dashboard, click on "Online Store" and then "Themes".
  2. Find the theme that you want to edit and click on "Actions" and then "Edit code".
  3. 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!

 

 

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.

View solution in original post

Replies 3 (3)

Made4uo-Ribe
Shopify Partner
10211 2427 3079

Hi @LianYing 

Which image are you referring to?

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.
LianYing
Tourist
7 0 2

This one

LianYing_0-1738354607489.png

 

 

Made4uo-Ribe
Shopify Partner
10211 2427 3079

This is an accepted solution.

Try this one. 

  1. From your Shopify admin dashboard, click on "Online Store" and then "Themes".
  2. Find the theme that you want to edit and click on "Actions" and then "Edit code".
  3. 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!

 

 

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.