Site logo

Archived topic

Container Issues

5 replies · Started by Hollee on June 25, 2019

Viewing posts 1–6 of 6

Good afternoon! Sorry if this has already been answered...

On one single page, I turned off the sidebar and set container to "full-width"... however it isn't centered. Is there a way to just center this one page? Thank you so much!

Hi there,

Remove this CSS you've added should fix it.

@media only screen and (min-width: 769px) {
    #primary {
        max-width: calc(100% - 330px);
    }
}

Let me know if this helps :)

Thank you so much! I think I have to keep that code in for Mediavine. Is there a way to just remove it on one page?

Do you need that code for only one page?

If so it's best to target that code for just one page instead.

No. I need that code to be on every page except for one. :(

Try this instead:

@media only screen and (min-width: 769px) {
    body:not(.page-id-41876) #primary {
        max-width: calc(100% - 330px);
    }
}
This archived topic is closed to new replies.