scrolling page overlays/panels
-
Hi folks does anyone know of a way to make sliding page panels like this website?
https://bankston.com/au/They are sort of like page overlays, but rely on scrolling to reveal themselves.
-
can u try this:
right click every row you want to use this effect for
for every row then click "use browser height for row height"also for every row click "set html class and id"
for html class enter:
sticky-rowalso, right click every one of these rows and choose a row background color
add this in:
lay options -> custom css & html -> custom css for desktop.sticky-row{ position: sticky!important; top: 0!important; }does that work?
can u do my steps and then post the link here so i can see how it looks? -
-
nice!
seems like you need to right click the texts in your rows, then space top

-
yes, thats because in browser height rows, text elements are position absolute so they can overlap other elements.
-
.sticky-row .absolute-position{ top: 30px!important; }try this please
-
ah thats a better way of doing it, very good idea!