Archived topic
How to change container size and background color diffent in HP and single post?
3 replies · Started by Former User on March 22, 2020
Hello,
I am using volume site library, I would like to know if it is possible to change background color on single post only, would like to make it white #fff and leave rest as it is? And would like also to change size of container in homepage only to make it full-width,How can I do this? Thanks!
Hi there,
This CSS changes the body background of single posts:
body.single {
background-color: #fff;
}
You can create a layout element to make the front page full width:
https://docs.generatepress.com/article/layout-element-overview/#content-1
Hello Leo,
That worked fine but, I would also need this for pages and categories, actually everything else than homepage so, maybe its just easier if you can tell me css code for changing background color on homepage only which is what I need?
Thanks!
Hi there,
this for just the home page:
body.home {
background-color: #fff;
}