Site logo

[Support request] Stick left panel

Home Forums Support [Support request] Stick left panel

Home Forums Support Stick left panel

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #2539389
    melvin

    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

    #2539410
    Fernando
    Customer Support

    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;
            
        }
    }
Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.