We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more

Re: Footer Copyright and Credits showing in editor but not on mobile

Solved

Footer Copyright and Credits showing in editor but not on mobile

JhordanMSUITE
Shopify Partner
135 2 42

Hello,

Can anyone help me identify why my Footer Copyright and Credits are showing in editor but not on mobile?

 

IMG_C0459E7B1502-1.jpegScreenshot 2024-01-30 at 3.57.08 PM.png

 

https://thearchivevault.myshopify.com/

 

pw: 51134

Accepted Solution (1)

Laza_Binaery
Shopify Partner
545 87 152

This is an accepted solution.

Hi @JhordanMSUITE 

 

Looks like an issue on mobile is that the scroll event is not triggered. Like block can not be reached. And block is animated with classes 

"scroll-trigger animate--slide-in scroll-trigger--offscreen" so opacity is set to 0.01 in 

.scroll-trigger.animate--fade-in, .scroll-trigger.animate--slide-in {
    opacity: 0.01;
}

So it is there but not visible. 

You can try to remove the animation, if there is an  option in settings or override the CSS 

.footer__content-bottom {
    opacity: 1;
}
Kind regards
Laza
www.binaery.com

View solution in original post

Replies 2 (2)

Laza_Binaery
Shopify Partner
545 87 152

This is an accepted solution.

Hi @JhordanMSUITE 

 

Looks like an issue on mobile is that the scroll event is not triggered. Like block can not be reached. And block is animated with classes 

"scroll-trigger animate--slide-in scroll-trigger--offscreen" so opacity is set to 0.01 in 

.scroll-trigger.animate--fade-in, .scroll-trigger.animate--slide-in {
    opacity: 0.01;
}

So it is there but not visible. 

You can try to remove the animation, if there is an  option in settings or override the CSS 

.footer__content-bottom {
    opacity: 1;
}
Kind regards
Laza
www.binaery.com
JhordanMSUITE
Shopify Partner
135 2 42

Thank you for your time and support!