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