Phantom Photo Glow

Solved

Phantom Photo Glow

RyanCrowther
Tourist
3 0 1

Can't Remove this phantom green border/overlay from my theme no matter what I try...

store URL https://shop.xidax.com/

 

RyanCrowther_0-1729697933041.png

 

Accepted Solution (1)

Laza_Binaery
Shopify Partner
442 77 125

This is an accepted solution.

Hi @RyanCrowther 

 

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
}

 

 

Kind regards
Laza
www.binaery.com

View solution in original post

Replies 3 (3)

Shadab_dev
Shopify Partner
1417 72 153

Please always share store url in any query.

Buy me Coffee, if you feel i was helpful. Email Me here or WhatsApp me with this link for any help with shopify theme customizations or any project in web dev. If this is helpful, please Like and Accept the solution.

Laza_Binaery
Shopify Partner
442 77 125

This is an accepted solution.

Hi @RyanCrowther 

 

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
}

 

 

Kind regards
Laza
www.binaery.com
RyanCrowther
Tourist
3 0 1

amazing thank you