- This topic has 5 replies, 2 voices, and was last updated 5 years, 4 months ago by .
Viewing 6 posts - 1 through 6 (of 6 total)
Viewing 6 posts - 1 through 6 (of 6 total)
- You must be logged in to reply to this topic.
Home › Community Forums › Guru Theme Support › change full width
Can you tell me how to change the width of the full width template?
The width in the Full Width template is based on the default size of the theme. It’s basically the Content area without the sidebar.
The Guru theme is 1200px wide. You can find the default width for the entire site around line 624 in your style.css –
.site-inner {
max-width: 1200px;
}
So in order to change that width on the Full Width Template, you would need to add something like this –
.full-width-content .site-inner {
max-width: 1400px;
}
This allows you to change the width on the Full Width template without affecting the other pages on the rest of the site.
Hi wes, thanks very much. worked perfectly.
Hi wes. thanks for reply also how can i do the same with the landing page width?
Try this code for the Landing Page –
.landing-page .site-inner {
max-width:1400px;
}
It’s basically the same thing as above except .landing-page
is added in front of .site-inner