Yes that goes in your css. You would have something like this for the banner text:
HTML Code:
<div id="banner">Latest News yada yada</div>
and then your css would say:
HTML Code:
#banner {
background: background: url(bg01.jpg) repeat-x;
padding: 10px 0;
}
The padding is there just to give the div a bit of height (there might be more elegant ways to do this that LadynRed will show us when I've made a hash of this  )so that your background image shows. If you get stuck, post a link to the page that has the problem.
|