change background color

QuestionsCategory: Customizationchange background color
stephanie jones asked 5 years ago

I have the beauty blog theme. is there any way to change the background color from white to a different color? Thanks

1 Answers
Jennifer Staff answered 5 years ago

Yes, go to Appearance > Customize > Additional CSS There are 2 things you need to add.  The first is the Site Inner so your content is on a white background, the second is the actual background of the site.  If you do not want your content on a white background, skip the site-inner part. 
 
.site-inner {
background: #fff;
}
 
.site-container {
background: #eee;
}
 
 
Be sure to clear your browser and hosting caches to see the changes.