How can I remove shadows from specific images in Craft theme?

Hey, I have problem with removing shadows in shopify. In customization of my Craft theme is Media shadow, customization, but this applyes to all media and images, I want to hide/delete the shadow from product pictures and keep it on all other media.

Store url: https://sensaibeauty.myshopify.com/

Pass: geigea

Thank you!

@Jacobss - can you please share the page link where you have this shadow?

Hi @Jacobss

This is Victor from PageFly - Shopify Page Builder App, I’d like to suggest this idea:

Online Store ->Theme ->Edit code

Assets ->Base.css

.global-media-settings:after {
    content: "";
    box-shadow: unset !important;
}

Hope you find my answer helpful!

Best regards,

Victor | PageFly

Hello @Jacobss ,

You can follow these steps:

  1. Go to Online Store->Theme->Edit code

  1. Open your theme.liquid file, paste the below code before


I hope the above is useful to you.

Kind & Best regards,
GemPages Support Team

Thank you, it works!