Hi there,
If you want to hide sidebar in mobile, then share the link to your site.
Thanks!
I’m sorry for not being clear; I don’t want to hide the sidebar, I want to show it. Typically in mobile view, whatever’s in the sidebar drops down below the main content, but in Minamaze it doesn’t. Example: https://www.compasscarecommunity.com/vision-tours/
Hi there,
You can try adding the following code to your Admin Panel > Appearance > Customize > Additional CSS field:
@media screen and (max-width: 685px) {
#sidebar {
display: block !important;
}
}
Thanks!
Thank you for this! I also added a line to change the width from 25% to 100%. 🙂
@media screen and (max-width: 685px) {
#sidebar {
display: block !important;
width: 100%;
}
}
All the best!
Additionally, I’d prefer
.layout-sidebar-right #sidebar-core {
margin-left: 0px !important;
}
between the two closing brackets.