Renew Sidebar Top in Responsive view

Hi Guys. I have this code for ethos that works perfectly to get the side bar at the top of content in responsive mode.

I need to have this now for Renew Stack.

Thanks loads in advance. Max

@media (max-width: 980px) {
.x-content-sidebar-active .offset.cf {
display: flex;
flex-direction: column-reverse;
}

.x-sidebar.right {
margin-top: -10px;
}
}

Hi @gimmechefs,

Please update your custom CSS to this:

@media (max-width: 980px) {
    .x-content-sidebar-active .x-container.max.width.offset {
        display: flex;
        flex-direction: column-reverse;
    }

    .x-sidebar.right {
        margin-top: -10px;
    }
}

For more information about the flex-direction attribute, please take a look at this:

Hope it helps :slight_smile:

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.