Can’t Remove this phantom green border/overlay from my theme no matter what I try…
store URL https://shop.xidax.com/
A user encountered an unwanted green border/overlay appearing around product photos on their Shopify store that they couldn’t remove through standard customization attempts.
Root Cause Identified:
The issue stemmed from CSS code in the assets/xidax.css file, specifically targeting .header-product .product__media-item elements with an #effbef (light green) background color.
Solution Provided:
xidax.css#effbef to #fff (white) to match the product image backgroundsborder-radius: 5px and padding: 10px properties that can be adjusted as neededStatus: Resolved - the user confirmed the solution worked successfully.
Can’t Remove this phantom green border/overlay from my theme no matter what I try…
store URL https://shop.xidax.com/
Please always share store url in any query.
It is this code in your assets/xidax.css
.header-product .product__media-item.grid__item.slider__slide.scroll-trigger.animate--fade-in.is-active {
background: #effbef;
border-radius: 5px;
padding: 10px
}
It is background so you can just change it to white to match image’s backgrounds
.header-product .product__media-item.grid__item.slider__slide.scroll-trigger.animate--fade-in.is-active {
background: #fff;
border-radius: 5px;
padding: 10px
}
amazing thank you