Shopify themes, liquid, logos, and UX
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
Hello,
Can anyone help me identify why my Footer Copyright and Credits are showing in editor but not on mobile?
https://thearchivevault.myshopify.com/
pw: 51134
Solved! Go to the solution
This is an accepted solution.
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;
}
This is an accepted solution.
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;
}
Thank you for your time and support!