Site logo

Archived topic

Fixed positioning a grid column

3 replies · Started by Hasan on November 6, 2020

Viewing posts 1–4 of 4

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

Hi there,

try adding this CSS:

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

Awesome! Thanks David!!

Glad to be of help

This archived topic is closed to new replies.