A possible solution I found: https://stackoverflow.com/questions/5135019/css-opacity-only-to-background-color-not-the-text-on-it
]]>body.category-tv {
background-image: url("https://example.com/wp-content/uploads/2017/03/your-background-image.jpg");
background-position: center center;
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
}
To get the classname I used Inspect Element (in Firefox).
There seem to be two nested statements that highlight the right area when I roll over them with the mouse.
<div class="col-main">
<div class="entry-content">
I’ve tried replacing category-tv in the above code with both (as well as using a link to an image file on the localhost site) but it makes no difference at all.
]]>