How do I remove an image border in CSS on my spotlight theme?

Topic summary

Problem: An image in the Spotlight theme’s “Image with text” section shows an unwanted edge; it’s a box shadow (not a border). Goal: make the image blend into the background.

Action taken: After getting the store link, a solution was provided to add CSS in that section’s Custom CSS to remove the shadow:

  • .image-with-text .grid__item:after { box-shadow: none !important; }

Notes: “box-shadow” is a CSS property that draws a shadow around an element; “:after” is a pseudo-element often used for decorative effects. Removing the shadow on this pseudo-element eliminates the visible edge.

Outcome: This fix worked for the original requester.

Latest update: Another participant reported the same issue on www.thaicoffeeco.co.uk and asked for help. The helper requested the exact location of the problem on the site to verify and apply the fix.

Status: Resolved for the original case; pending details for the new report (discussion ongoing).

Summarized with AI on January 2. AI used: gpt-5.

priinttern.com