On my home page, I have a slide show of my best images I had to make it quite big to get the full image to fit the hole page.
I am now looking for a way to stop people scrolling the game so that just see the header section and slide show
On my home page, I have a slide show of my best images I had to make it quite big to get the full image to fit the hole page.
I am now looking for a way to stop people scrolling the game so that just see the header section and slide show
Hi!
The issue doesn’t seems to be related to WixCode.
The length (Y) of your page is dependent on the last object in your page.
Unfortunately it is not possible to stop your users from scrolling via WixCode.
I suggest you contact the Wix support center so that maybe they can give you options of optimizing your layout just by using default editor features.
thanks
@contact7901 actually you can force the user not to scroll the page, but it’s not a good practice.
If you want it anyway, you can do something like:
import wixWindow from 'wix-window';
setInterval(() => {wixWindow.scrollTo(0, 0, {scrollAnimation: false})}, 100);
But you’re better rearrange your page so you won’t need to use this workaround.