Post full page background
Using css I can get the post background to a particular colour, however There does not seem to be a facility to have the full screen background a particular colour. One ends up with the centre section containing the post with the right background but a large white space either side. As it renders the right colour is full screen but as the post appears the sides seed to be overwritten with white. Anyone know how to fix this please.
Murray Russell prehaps try - wordpress dashboard, ==> appearance, customise, general settings, background - select colour. Or have you set a custom body for posts in the divi theme builder? - page settings, background?
Thank you for your response. Issue now solved by adding this css
/ All single blog posts /
body.single-post {
background: #ddd8b1; / pick your colour /
}
/ If the white is coming from the main content wrapper, you may need this too /
body.single-post #main-content,
body.single-post #et-main-area {
background: transparent;
}