Sticky column

Hello,

I’m trying to achieve a sticky column with a slider on the left side of the screen and a scrollable area with the most recent articles on the right. I can’t figure out why but position sticky is not working. I have tried setting the overflow of the body to both visible and clip but it didn’t work.
The css for the column i want to stick is:
.sticky {position: -webkit-sticky; /* Safari */
position: sticky;
top:20px;
height:inherit;
z-index:99;}
Also the sticky column is not the only child in the wrapper.
I’m trying to achieve something similar to: https://www.scena9.ro/
The site i’m working on is https://new.cutra.ro/

Could you please help me out? Thanks

Hey @robertblaj,

Thanks for writing in! Please make sure that you have enough contents on the page to demonstrate or at least replicate the sticky effect that you want. I would also recommend that you check out this video:

https://www.youtube.com/watch?v=_4W1Sw535aU

Hope this helps.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.