Archived topic
Need to adjust content width only
7 replies · Started by Bebe on January 30, 2017
Site is being developed here
http://hiddenvalleylakegolfclub.com/beta/
I need to adjust the site copy only to a width of 70% but not affect the header or slider.
Hi there,
Looks like you are using sections so try this CSS:
#generate-section-2 {
max-width: 840px;
}
Adding CSS: https://docs.generatepress.com/article/adding-css/
Let me know if this works.
Doesn't work.
Looks like it's working for me unless I misunderstood what you wanted?
The CSS above controls the width of the content section (The 6511 yard....). You can change the px number to your liking.
Sections are only being used on the homepage. I need the internal page content (not sections) set to a width of, say, 500px.
So for like this page? http://hiddenvalleylakegolfclub.com/beta/hvgc/description/
You can use this CSS then:
.container.grid-container {
max-width: 500px;
}
Perfect. thanks!
You're welcome!