Home › Forums › Support › WordPress 5.0 & Container Width This topic has 5 replies, 2 voices, and was last updated 4 years, 4 months ago by Leo. Viewing 6 posts - 1 through 6 (of 6 total) Author Posts January 20, 2019 at 10:02 am #787209 Steve For Gutenberg, it would be great if GP had a third container width. If Container is set to blog width (say 800px), that’s too narrow for a home page, for example. Adding margins to Full Width appears to require different CSS classes for different Gutenberg block types (and I’m not a CSS guy). Is some way emulate a third container width, say 1,500 px? January 20, 2019 at 11:37 am #787279 LeoStaff Customer Support Hi there, So you want to change the container of the home page only? If so try this: body.home .site.grid-container { max-width: 1500px; } Adding CSS: https://docs.generatepress.com/article/adding-css/ Let me know π January 20, 2019 at 11:53 am #787295 Steve Thanks. That works for home. What would be the approach for other individual pages? January 20, 2019 at 12:04 pm #787300 LeoStaff Customer Support You can keep adding on the CSS: body.home .site.grid-container, body.page-id-xxx .site.grid-container { max-width: 1500px; } We could do it a different way if there is certain logic as well. Like all single posts would be: body.single .site.grid-container, { max-width: 1500px; } Everything except the single posts would be: body:not(.single) .site.grid-container, { max-width: 1500px; } You get the idea π January 20, 2019 at 12:30 pm #787318 Steve Thanks, Leo! January 20, 2019 at 1:02 pm #787335 LeoStaff Customer Support No problem π Author Posts Viewing 6 posts - 1 through 6 (of 6 total) You must be logged in to reply to this topic. Log In Username: Password: Keep me signed in Log In