Archived topic
Mobile - display left/right sidebar
5 replies · Started by Joyce on September 26, 2020
Hi Team,
Is that possible to display 3 columns layout (left => main content => right sidebar) on mobile.
I only find primary navigation has Mobile Menu Breakpoint, thanks.
Thanks,
Joyce
Hi there,
it is possible with some CSS - if you have a link to the site i can look at whats required .... BUT there really is limited space on mobile for all them to be displayed in a row.
Thanks David
You can try this CSS:
@media (max-width: 768px) {
.site-content {
flex-direction: inherit;
}
}
But as David already pointed out, there is simply not enough space on a mobile phone for this layout.
Thanks Leo and David.
No problem :)