Hi Samthaboss,
for your question to make the white box have a background, it can only be done for the front page only.
Here is the ID of white box on your front page: featured
And for another page, it takes ID: wrapper
This is to make your front page white box to have a background image:
#featured {
background-image: url(https://www.fryegard.com/wp-content/themes/responsive/core/images/featured-image.png);
}
You can make the white box at another page have the same background by adding a new class for them. for example:
your front page white box code:
<div id=”featured” class=”grid col-940″>
your single page white box code:
<div id=”wrapper” class=”clearfix”>
you can modify them become:
<div id=”featured sample” class=”grid col-940″>
<div id=”wrapper sample” class=”clearfix”>
Then, the css code will be:
#sample {
background-image: url(https://www.fryegard.com/wp-content/themes/responsive/core/images/featured-image.png);
}
and all of your white box will have the same background