|
December 28th, 2007
I can tell you what to do, but I'm having trouble visioning it. Your body can have a background that repeats vertically and horizontally, in other words, fills the page.
body { background:url(image.gif) repeat-x top left; }
Then use a div to go on the top horizontally.
.mydiv { background:url(image.gif) repeat-x top left; }
|