Hi,
I am creating a custom post layout and following best practices, using child theme, etc. But I have an issue. I want the ONLY the post layout to be 100%, so the featured image will be 100%, and also some content items need to be 100%.
I am modifying this class:
class=“x-container max width offset”
with this overriding css:
.x-container.max {max-width: 100%;margin:0px}
.x-container.width {width:100%;}
But it, of course, effects the whole site. Is there a way to just make this change for Posts?
Thanks!