Would very much like to shrink the sidebar width for the tablet size. With an iPad in portrait orientation, the sidebar takes up almost half of the screen on both the main blog page (masonry + sidebar) and the individual page or blog page with sidebar.
I tried shrinking the sidebar size in the 768.css, but that also shrunk the sidebar in desktop view as well.
You can use this custom css code
@media screen and (min-width: 768px) and (max-width: 991px) { .sidebar { width: 25%; } }
@media screen and (min-width: 768px) and (max-width: 991px) { .with-sidebar { width: 75%; } }
Thanks