Hello everyone,
I want to put a pinned container box (to hold an offer) on a bunch of my pages but I can’t seem to make it dissapear when it reaches the footer. Right now it goes over the footer and that obviously doesn’t work. Here’s a link:
https://nikolaynkv.wixsite.com/mysite-1/ekskurzii
I tried using this code I found on another question, but I can’t make it work. I did it through the properties menu with viewport enter and leave, but still doesn’t work.
$w("#footer1").onViewportEnter((event) => {
$w("#contactForm").collapse();//use the form property id
})
$w("#footer1").onViewportLeave((event) => {
$w("#contactForm").expand();
})
Any help would be greatly appreaciated.
Thank you!