Sure, the following CSS will accomplish this:
.singular-page .entry {
background: #000;
}
You can add that to the “Custom CSS” section found in the Customizer.
great stuff thank you! and if i want to change the text from grey to white?
You’re welcome 🙂
This can be done with the following CSS:
.singular-page {
color: #fff;
}
.singular-page .entry-content a,
.singular-page .entry-content a:link,
.singular-page .entry-content a:visited {
color: #fff;
}
This will make the text and any links in the page content white.
thanks so much! best theme and best support ever!!
sorry one last question 🙂 say if i want to change the main background colour which is currently gray to black as well? what would the css be then?
Here ya go 🙂
.site-header, .main, .overflow-container, .menu-secondary-items, .site-header .search-form-container button, .excerpt {
background: #000;
}
That will change the background of the whole site to black.
this is awesome!! thanks. if i want to remove the big header title of the page and also the text just above the footer, how do i go about doing this?
you must really win a prize for your support 😉
I’m sorry, I missed your last question here. To answer it, the following CSS would remove the title on posts/pages:
.entry-title {
display: none;
}
And the text in the footer can be modified from the “Footer Text” option in the Customizer (Appearance > Customize).