
Originally Posted by
Sunabac
I just downloaded this beautiful template and would like to know how to make the stripe design to go all the way down and under the "middle display" area??
Hi There!
Use the site-bg.gif attached to this message (overwrite the one found in includes/templates/apple_zen/images
Then open up includes/templates/apple_zen/css/stylesheet.css and change:
Code:
body {
background:url(../images/site-bg.gif) 0 9em repeat-x;
}
To this:
Code:
body {
background:url(../images/site-bg.gif) 0 9em repeat;
}
Now after doing that, a teeny little bit of green stripe will show up just above the logo section, so you'll need to change this:
Code:
#headerWrapper {
width:100%;
text-align:center;
margin:0 auto;
}
to this:
Code:
#headerWrapper {
background:#ffffff;
width:100%;
text-align:center;
margin:0 auto;
}