Archived topic
Sidebars above content on mobile
6 replies · Started by Paul on February 11, 2021
How can I move both left and right sidebars to display above content 768px and below? I tried the CSS David has suggested here, but no change on the front end.
https://generatepress.com/forums/topic/move-sidebar-position-on-mobile/
Thanks,
Paul.
Hi Paul,
Could you can link us to the site in question?
You can use the private information field.
Let me know :)
Link pasted in private information...
Try this CSS:
@media (max-width: 768px) {
#right-sidebar {
order: -2;
}
#left-sidebar {
order: -1;
}
}
Let me know :)
Works perfectly, thanks for your help :)
Paul.
Glad to help :P
Resolved.