How to remove the glow effect on a product page?

Hello,

i was wondering how i can remove the glow effect around my product:

1 Like

Hey, please provide the store URL.

thankx for helping

url is: https://sixdreamz.com

1 Like

Hi @sixdreamz

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:
.card.card--card.card--media.color-background-1.gradient {
    --shadow-blur-radius: none;
}
  • And Save.

I hope it help.

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

Hi @sixdreamz ,

This is Anthony from Beae Landing Page Builder, and I’m happy to assist you today.

I realize this situation isn’t exactly what you’d hope for, but I’ve got a potential solution that I’d like to share with you:

  1. Go to Online Store → Theme → Edit code.
  2. Open your assets/base.css file.
  3. Add the code at the end of the file:
.product-card-wrapper .card, .contains-card--product {
    --border-width: unset !important;
}

Best regards,

Anthony