For some blog posts I would like to have a single section not have a container but instead be full width; while leaving the rest of the post in a container as is the default.
There is an excellent old forum post here which describes how to remove the container for an entire individual post by using this CSS:
.single-post .site > .x-container.max.width.offset {
width: 100%;
max-width: 100%;
margin: 0 auto;
}
.single-post .entry-wrap{
padding: 0;
}
I’d like to achieve the exact same effect but only for a single section.
I’ve attempted leveraging this CSS by applying it in the sections element CSS section using $el but am not able to get it to work. Any suggestions? It occurs to me this might simply not be possible and that instead I’ll have to apply margins to the sections of the post I want to appear to be inside a container.
