This topic has 4 replies, 2 voices, and was last updated 5 years, 5 months ago ago by Olga Barlow
Hi
Can you please help me how to add a box white background in post articles, pages article and sidebar but leave the color of the theme only a box background color underneath post pages and sidebar. I am using the underwear template.
Thanks
Hello,
Are you talking about container color? http://prntscr.com/nxcypa http://prntscr.com/nxczgr
Add the following code to child theme style.css
.content-page, .page-content {
background: #fff;
padding: 35px;
}
Regards
Thanks for the reply.
How about I want it on the post articles only because adding the white container background in the pages will also affect the home page of the site.
Thanks
Hello,
Then use the following code instead of the previous one
.blog .content-page, .category .content-page, .single .content-page {
background: #fff;
padding: 35px;
}
Regards
You must be logged in to reply to this topic.Log in/Sign up