Archived topic
Full-width page with content-width comments section
3 replies · Started by Adrien on January 29, 2022
Hey guys,
I'm building 4 specific landing pages on my website and I'm facing an issue.
I've set the pages with a full-width layout, without the header/footer/sidebar, etc.
And I've enabled the comments section.
Problem is : the comment section is taking the full width, but I'd like it to take the same with as the content boxes above (1200px).
You can check an example here: https://perf-gp.ispeakspokespoken.com/challenge-semaine-3/
How can I do this?
Hi there,
add this CSS to your site:
.comments-area {
max-width: 1200px;
margin: auto;
}
Thanks a lot :)
You're welcome!