Remove Shadow Behind Product Images in Sense Theme

Hello,

I have added a couple images in the product description

When this is displayed in the product page..There is a box shaped shadow on these images

I want to remove the background shadow from these images

my theme is Sense

Can anyone help me to solve it

1 Like

@Diaz5

Sorry you are facing this issue, it would be my pleasure to help you.

Welcome to the Shopify community! :blush:
Thanks for your good question.

Please share your site URL,
I will check out the issue and provide you a solution here.

1 Like

https://mylampy.in/products/mylampy

1 Like

@Diaz5

thanks for update, yes please add this code

  1. Go to Online Store->Theme->Edit code
  2. Asset->/base.css ->paste below code at the bottom of the file.
.rte img {box-shadow: none !important;}

Not working for me?

same here! can’t find a solution :disappointed_face:

this solution hasn’t worked for me

hey, this only works for desktop, can you help with mobile?

Hello Brittta!

Try and add this code instead:

@media (max-width: 767px) {
.rte img {
box-shadow: none !important;
}
}

This code is for screens no bigger than 767 px (often referred to as a “phone view”)

This doesn’t work for mobile. Any other solution you have?