GeckoGrafix
3/19/2018 - 8:35 PM

Sticky Sidebar

Make sidebar last child widget sticky Place this code BEFORE the media queries area of the main style sheet

@media only screen and (min-width: 1024px) {

    .content-sidebar-wrap {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
    }

    .sidebar-primary .widget:last-child {
        position: -webkit-sticky;
        position: sticky;
        top: 40px;
    }

    .admin-bar .sidebar-primary .widget:last-child {
        top: 72px;
    }

}