How to keep sidebar showing on tablet?

Hey there, quick question about sidebars on Integrity stack.

Currently, when creating a regular blog post with layout Content Left, Sidebar Right the sidebar will disappear once the screen size goes below 980px. Is there a way to keep the sidebar showing instead of having it disappear?

Ideally, I would like the sidebar to show for all screens sized 768px and above.

Thanks!

Hi there,

Please kindly add a Child Theme to your installation and copy the file below:

wp-content/themes/x/framework/functions/global/admin/customizer/output/base.php

to your Child theme:

wp-content/themes/x-child/framework/functions/global/admin/customizer/output/base.php

You will need to create folders in the child theme as above.

Then open up the base.php file in an editor and change line 172 from:

@media (max-width: 979px) {

to

@media (max-width: 767px) {

Thank you.