box shadow override

Hello again, I’m so sorry keeping you guys busy with all the post.
I had quick question–

I wanted remove the box shadow around the image, I tried:

.cast-shadow {
  -webkit-box-shadow:  none;
  -moz-box-shadow: none;
  box-shadow: none;
}

however not working.
If you could advise me on this issue, that would be wonderful.
Thank you for your time!

Hi @caluyadesign,

I hope you are well today and thank you for your question.

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Shapely Options -> Other

img.cast-shadow {
  -webkit-box-shadow:  none;
  -moz-box-shadow: none;
  box-shadow: none;
}

Best Regards,
Movin