Sorry for the delay – I had to go back and refresh my memory!
Well, I did get a common background through the whole website, but I never really got quite what I wanted (different BG on each page) as the theme does only seem to allow one image in it’s “free” version.
However, I compromised as follows, adding these changes to the CSS via the CSS Editor …
1. First I added “MyImage”, to the “Content” section, to be the overall background.
/*---------------------------------------
** 10.0 Content -----
-----------------------------------------*/
/* NOTE - .site-content was just background: #FFF; */
/* Removed single colour background and replace with my image */
.site-content {
/* background: #FFF; */
/* background-image: url('https://mywebsite.co.uk/wp-content/uploads/2015/09/Tile-lighter.jpg') !important; */
background-image: url('https://mywebsite.co.uk/wp-content/uploads/2015/09/MyImage.jpg');
background-repeat: no-repeat;
background-position: center;
}
.home .site-content {
background: none;
}
2. Then I added a new CSS entry to allow me to set a background to any “div” and created the entire useable area with this “div”. This gives a box effect with just a border of the “MyImage” background …
/* NOTE - My additions to CSS for the second-level pages */
.ggdiv {
background-color: #f3f3f3;
border-color: #e6f0ff;
background-image: url("https://mywebsite.co.uk/wp-content/uploads/2015/10/brickwall-soft.png");
border-style: solid;
border-width: 10px;
}
p.ggparad {
text-align: left;
color: #000000;
font-weight: normal;
}
p.gpparah {
text-align: left;
color: #3333dd;
font-weight: bold;
}
And finally, created the required PAGE, using TEXT mode to allow me to wrap the whole thing with my “div” …
<div class="ggdiv">
... page content ...
</div>
~~~~~~~~~
AND, Not specifically part of this conversation, but I also removed the darkening filter from the Contacts page so that the background image was the same throughout…
.contact-us {
/* NOTE - was background: rgba(0, 0, 0, 0.5); */
background: rgba(0, 0, 0, 0);
padding-bottom: 95px;
}
I hope this is useful?
Gordon