So just to see if I am getting this correct. I cut the image into 3 sections.
The top I use topscroll.jpg for image and to keep it simple
<div id="topscroll"></div> to place image in the define main page.
Then under that I put <div id="middlescroll"> the text I want to put in </div>
Then put under that<div id="bottomscroll"></div>
and in the css I should put
Code:
.centerBoxWrapper {
border: 0px;
height: 1%;
margin: 1.1em 0;
}
.topscroll {
background-image: url(../images/topscroll.jpg);
}
.middlescroll {
background-image: url(../images/middlescroll.jpg)repeat-y ;
}
.bottomescroll {
background-image: url(../images/bottomscrol.jpg);
}
I know I probably have this all screwed up and have misses a lot