Repeating Image

How do I go about having an image for a header that is centered and then on each side of it like a 1px wide image that repeats on both sides until it gets to the end of the page.

Thanks

#497522

Add a css style

.your_image { background: url yourimage repeat-x;}

#497524

just to rephrase:

div.header{

background: url(urltoimage) repeat-x;

}

keep your code clean =]. if you need any help at all feel free to contact me.

#497570