Hey there tiffD99,
Hope you’re well today!
Generally this is something that could be done with some custom CSS. Try adding the following CSS code in the style.css file of your child theme or add it in your site using the following plugin if your theme doesn’t have custom CSS tab.
http://ww.wp.xz.cn/plugins/simple-custom-css
Once the plugin is installed and activated you can add this code to Appearance >> Custom CSS:
body.single.single-post {
background-image: none;
}
This should remove the background image from your single post pages only. If this doesn’t work please provide link to your site so I can take a look 🙂
Best regards,
Bojan
naturalgreenhousespecialist.com
.
Still can not make it readable. Thank you for the simple instructions I was able to do what you told me to do. It just did not work
Hi there tiffD99,
Hope you are having a great week so far!
Can you try adding the fallowing snippet the way Bojan explained –
.site-content{
background-color: #fff;
}
Let us know if this works for you.
Thanks,
Ivan
You have Bojan’s code in comments:
/*
body.single.single-post {
background-image: none;
}
*/
Those /* */ marks before and after the code are comment marks: they tell the browser to ignore anything CSS in between them. If you remove them, you should be good to go.
YES! You are awesome Stephencottontail! I am clearly an newbie! Thank you so much for the quick lesson! YOU ROCK!