My Sticky column not work

I’m trying to try the new sticky column but I can’t see it working. I try to do it on my own manually and it doesn’t work either.

Hi!
It looks like you have overflow-x: hidden on the body element and usually this breaks the sticky behaviour. Try to set it to overflow-x: clip.

html,body {
    overflow-x: clip;
}

Hope this helps!

Thanks! I forgot I had that code on.