Site logo

Archived topic

Set a page

3 replies · Started by Matthieu on October 22, 2020

Viewing posts 1–4 of 4

How to set a page in full width without it being able to move up and down on the scroll on generatepress?

Here is an example of the result I would like to obtain: https://delassus.com/en/

Indeed on the example above, with the scroll of the mouse the page remain "frozen". I would like to reproduce this.

Thanks

Hi,

You can do that with this.

body{
position:fixed; 
width:100vw; 
height:100vh;
overflow:hidden;
}

But if you really must follow the exactly what the reference site did, I'm afraid you'll have to find the custom javascript library it uses and apply it to your site.

They seem to be using GSAP 3.1.1.
- https://greensock.com

Ok perfect ! Thanks

No problem. :)

This archived topic is closed to new replies.