Based on the video below, how can I get the sticky element just on mobile devices?Thanks!https://www.youtube.com/watch?v=rINUO7rK94I
Hi, In the custom code snippet you can get the screen size before pinning the element and add a condition based on the screen size. For example:
const screenWidth = window.innerWidth; if(screenWidth >= 650){ //pin element }
Hope this helps. Eitan