Archived topic
move left side bar below content under 1000px
5 replies · Started by Stephen on March 12, 2022
Hi, I would be most grateful if you can tell me how to
- move left side bar below content under 1000px ?
I've tried some CSS but it moved the left sidebar above the content !
Thanks
Stephen
Hi Stephen,
I'm having a hard time to understand your request, do you have an example or screenshot to show us?
Let me know :)
Hi, i've probably not explained it well.
On my current pages which have a side bar - at mobile phone screen size the sidebar content shifts down to the bottom of the page below the content.
- I would like to set a higher screen size (1000px) for the Left sidebar content to shift down to the bottom of the page.
Thanks
Stephen
Hi there,
try adding this CSS:
@media (max-width: 1000px) {
.site-content {
flex-direction: column;
}
#left-sidebar {
order: 20;
}
#left-sidebar,
.site-content .content-area {
width: 100% !important;
}
}
Thats great thank you.
Works perfectly.
Glad to hear that