Hello. Using this forum I was able to remove the extreme padding from single posts on mobile view successfully using this CSS:
@media screen and (max-width: 767px) {
.single-post .x-container.width {
width: 100% !important;
}
.single-post .x-container-offset {
margin:5% !important;
}
}
How can I accomplish the same thing on: Pages, category archives, and blog? I basically want there to be less padding on mobile view for all the native content (all content that is native to wordpress and X NOT in cornerstone) but I don’t want it to affect the padding of the header, footer and nav bar. It seems that even with the code above the nav bar will lose padding when on a single post.
Conversly if I use this CSS it accomplishes all that I want, EXCEPT I lose padding on the mobile nav bar, sidebar and widgets
/* mobile*/
@media screen and (max-width: 767px) {
.x-container.width {
width: 100% !important;
}
.x-container-offset {
margin:5% !important;
}
}