Site logo

Archived topic

Sticky widgets

1 reply · Started by Den on February 26, 2021

Viewing posts 1–2 of 2

Hi team,

how to make particular widgets sticky but not the whole sidebars.

@media (min-width: 769px) {
    .site-content {
        display: flex;
    }
    .inside-right-sidebar {
        height: 100%;
    }
    .inside-right-sidebar aside:last-child {
        position: -webkit-sticky;
        position: sticky;
        top: 50px;
    }
}

That is the code that i added to my website but it just works on the right sidebar. I want the search bar (on the left sidebar to be sticky as well)

website link in the private information section :)

Please help.

You could add this , .inside-left-sidebar to your current CSS, after .inside-right-sidebar aside:last-child

There's only 1 widget in the right sidebar, could you add all the widgets and let us know which one you don't want it to be sticky?

This archived topic is closed to new replies.