Hey Tom
Over the last couple of days I’ve been looking into moving this site into WordPress and have 90% of the theme sorted using GeneratePress but for the life of me I cant work out if there’s a way within GP to include the background wrapper as shown below?
If you inspect the code from the background or header area you will see the css wrapper id. You should see css (below) from this site for the background (img01.jpg) and background wrapper (img02.jpg)
/* Body */
body {
margin: 0;
padding: 0;
background: #F7F7F7 url(../images/img01.jpg) repeat left top;
font-family: Georgia, “Times New Roman”, Times, serif;
font-size: 14px;
color: #5A554E;
}
#wrapper {
margin: 0px;
padding: 0px;
background: url(../images/img02.jpg) repeat-x left top;
}
As you will see, the background image img01.jpg repeats in both directions (x and y)
Whereas the background image img02.jpg repeat-x direction starting in the left top across the page overlaying the img01.jpg background image.
Is there a css class id I can use to include a wrapper so i can utilize these images which match the header image perfectly?
I searched the GP forum and found reference to .site-wrapper but it didn’t help me.
Cheers