Home › Forums › Support › Move sidebar bottom on tablet in GP 3 Flexbox This topic has 7 replies, 3 voices, and was last updated 1 year, 8 months ago by Tom. Viewing 8 posts - 1 through 8 (of 8 total) Author Posts October 6, 2020 at 9:09 pm #1475666 Olivier Hello, How to move the sidebar to the right on the blog home page and articles at the bottom of the page above the footer? Before I used css code: @media (min-width: 769px) and (max-width: 1024px) { .sidebar, .content-area { float: none; width: 100%; left: 0; right: 0; } } But since GP 3 and Flexbox, it no longer works. Cordially. October 7, 2020 at 2:31 am #1476049 DavidStaff Customer Support Hi there, try this CSS: @media(max-width: 1024px) and (min-width: 769px) { .site-content { flex-direction: column-reverse; } } Documentation: http://docs.generatepress.com/ Adding CSS: http://docs.generatepress.com/article/adding-css/ October 7, 2020 at 2:48 am #1476066 Olivier Hello David, It doesn’t work, it just puts the sidebar on the left above the content. Cordially. October 7, 2020 at 4:32 am #1476210 DavidStaff Customer Support Can you share a link to the site ? Documentation: http://docs.generatepress.com/ Adding CSS: http://docs.generatepress.com/article/adding-css/ October 7, 2020 at 10:51 am #1477082 Olivier Hello David, Link to shared blog, sidebar is on blog page and on posts. Cordially. October 7, 2020 at 2:54 pm #1477474 TomLead Developer Lead Developer Give this a shot: @media(max-width: 1024px) and (min-width: 769px) { .site-content { flex-direction: column; } .site-content .content-area { width: 100%; } } Documentation: http://docs.generatepress.com/ Adding CSS: http://docs.generatepress.com/article/adding-css/ Ongoing Development: https://generatepress.com/ongoing-development October 7, 2020 at 3:14 pm #1477497 Olivier Hello Tom, Perfect ! Thanks Tom ๐ Cordially. October 7, 2020 at 3:42 pm #1477521 TomLead Developer Lead Developer You’re welcome ๐ Documentation: http://docs.generatepress.com/ Adding CSS: http://docs.generatepress.com/article/adding-css/ Ongoing Development: https://generatepress.com/ongoing-development Author Posts Viewing 8 posts - 1 through 8 (of 8 total) You must be logged in to reply to this topic. Log In Username: Password: Keep me signed in Log In