[Resolved] Fixed positioning a grid column

Home Forums Support [Resolved] Fixed positioning a grid column

Home Forums Support Fixed positioning a grid column

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1520385
    Hasan

    Hi!

    I want the “Our Services” section to not go outside the screen on the desktop only while scrolling. How can I do that?
    Thanks!

    Regards

    #1520685
    David
    Staff
    Customer Support

    Hi there,

    try adding this CSS:

    @media(min-width: 769px) {
        #car-rental-sidebar {
            position: -webkit-sticky;
            position: sticky;
            top: 40px;
        }
    }
    #1521308
    Hasan

    Awesome! Thanks David!!

    #1521533
    David
    Staff
    Customer Support

    Glad to be of help

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