Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
Let’s see a page with the issue
Here you can see the white background behind the image. It should be black and the text light gray: http://leargraphicdesign.com/portfolio/?attachment_id=271
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
Hmm not sure what colours are the ones with the problem.
The white box behind the image should not show white. It should be black. and the text such as the title “Annual Report” and the description should be light gray.
I couldn’t figure out where to change that in the customization menu in WP.
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
If you’re not using a Child Theme, and if the theme doesn’t have a designated section of the dashboard for CSS modifications then install this Custom CSS Manager plugin http://wordpress.org/plugins/custom-css-manager-plugin
Then use its “CSS Code” section of the dashboard to hold your CSS modifications:
Alternatively use your Child Theme style.css file to hold your CSS modifications:
.site-content .entry-header,
.site-content .entry-content,
.site-content .entry-summary,
.page-content {
background: black;
}
.site-content .entry-header,
.site-content .entry-content,
.site-content .entry-summary,
.post-navigation a,
.image-navigation a {
color: lightgray;
}
I’ll give it a try. I was able to change the text to light gray but the background color (white box) I can’t seem to find in the Appearance menu. I’ll give this a try… thank you!
THANK YOU! Worked perfect. : )