Archived topic
Widen the Container in the Slideout Site Library Theme
3 replies · Started by Gary on September 6, 2020
I have looked through the forum and tried many things such as changing the container width in customizer (with page set as default template), but nothing happens. I want to make the content wider on certain pages. Is there a way to do it.
I tried changing the margins to negative 180 on both left and right, which worked on desktop but it messed up the mobile look. Also, I suspect this isn't the right way as it means I cannot see all my content when I am in the editing page.
Hi there,
Slider controls the content width with some CSS found in Customizer > Additional CSS:
/* Narrow content */
.no-sidebar .inside-article>*,
.no-sidebar #comments,
.no-sidebar .nav-links {
max-width: 700px;
margin-left: auto;
margin-right: auto;
}
Increase the 700px to a size you need.
Absolutely perfect. Thanks David!
You're welcome