footer reveal option
-
Hey Armin. Do you think it's possible to make the Footer page work with a 'footer reveal' effect? I tried with CSS but failed. I can do it with a section of the page, see here for example: https://lsbstudios.co.uk/home-bf/
But the links / text on the footer doesn't work, and changing z-index function won't help. Also, it would mean making the same section on every page of the website, which is not practical. I'd love to have that effect though, but with a Footer page.
Any tricks you think could work here?
-
you did a great job with that website!
disable the cover feature and use this css:
#footer-region{ position: fixed; } /* using body>.lay-content to not select content inside */ body>.lay-content #grid{ background: white; z-index: 2; margin-bottom: 100svh; }this code expects your footer to be browser height, because we use margin-bottom: 100svh;
with the cover feature creating this effect is harder because both the cover and the footer are fixed and need to be hidden behind the content.
so after scrolling away from the cover, i would need to then hide it using js, so the fixed footer can be revealed later.