My sidebar disappears below the mobile breakpoint. I need some suggestions on how to get that to appear on mobile. thanks
Hi bmorejamie!
You can add this on your custom.css or Quick CSS:
@media only screen and (max-width: 767px) {
.responsive .template-blog .blog-meta,
.responsive .post_author_timeline,
.responsive #top #main .sidebar {display: block; }
}
Remove browser cache then reload the page a few times.
Regards,
Ismael
Does not work for me. Sidebar still gone in Firefox. In Chrome and explorer sidebars ok.
Hi!
What mobile device do you have? You can increase the max-width on the media query code:
@media only screen and (max-width: 1024px) {
.responsive .template-blog .blog-meta,
.responsive .post_author_timeline,
.responsive #top #main .sidebar {display: block; }
}
Remove browser cache then reload the page.
Regards,
Ismael