Site logo

[Resolved] How to make spesific sticky sliders

Home Forums Support [Resolved] How to make spesific sticky sliders

Home Forums Support How to make spesific sticky sliders

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #2421520
    gelistirici

    Hi, i want to make my spesific slider widgets sticky:
    my website

    Like only first and last of them:
    https://prnt.sc/jirMz0aKRzPA

    How can i do that?

    #2422065
    Ying
    Staff
    Customer Support

    Try this CSS:

    @media (min-width: 769px) {
    .inside-right-sidebar {
        height: 100%;
    }
    
    .is-right-sidebar aside#block-2, .is-right-sidebar aside#block-13 {
        position: sticky;
    }
    
    .is-right-sidebar aside#block-2 {
        top: 25px;
    }
    
    .is-right-sidebar aside#block-13 {
        top: 170px;
    }
    }
    #2422574
    gelistirici

    It’s worked! Thanks.

    #2423318
    Ying
    Staff
    Customer Support

    No problem 🙂

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.