Hi all, I want a jpg either side of a div to give it a gradient affect into the backfround - I remember seeing this done before but can't find it on google now - any ideas? Thanks
It's probably easier to do by combining your two images into one so that the left and right ends fade into the background. Cut your image so that it's only one pixel high and is the width you want. Put your background in one div and your content in another, then make sure your content div is inside the background div. Give your div a id then use css to make your image repeat in the background. Try html <div id="background"> <div id="content"> Content </div> </div> #background {text-align:center; background:url(backgroundimage.jpg) top left repeat-y;} See how that goes, if you want then post your code as it is and I'll have a look at it.