Archived topic
Change the dimension of a normal page
5 replies · Started by Elia on December 18, 2018
Hi there,
How can I make this page not too wide? Please take a look at the link that I specified.
It's now about 1170px and I want to make it 800px and centered of course
Hi there,
do you want to change the entire site width including header? If so you can adjust in the Customizer > Layout > Container.
If you just want to adjust the content area width then you can use this CSS:
@media (min-width: 800px) {
#main {
max-width: 800px;
margin-left: auto;
margin-right: auto;
}
}
Thanks, David!
How can I do the same just for 1 page (page-id-14210)
You can add the class to the rule so #main { becomes .page-id-14210 #main {
Thanks a lot!
You're welcome