Site logo

Archived topic

Stick left panel

1 reply · Started by melvin on February 19, 2023

Viewing posts 1–2 of 2

Hi,

I would want to make the left penal sticky when scroll. May i know what css i have to add to achieve that outcome?

Thanks

Hi Melvin,

You need to set the position to fixed as opposed to what you currently have which is absolute.

Try removing the code you have for this and replacing it with this:

@media(min-width: 769px){
    .gb-container.home-left-panel {
        position: fixed;
        left: 0;
        bottom: 224px;
        z-index: 10000;
        transform: rotate(-90deg) translateY(-224px);
        width: 500px;
        
    }
}
This archived topic is closed to new replies.