C
chrismitchell
Guest
Ok odd question.. I want to have 2 background images. One over the other. I can get so far but then i'm stuck
so I appeal to the DF masses to ask for assistance 
My background image on the body tag works fine and does a repeat-x as it is a 1px wide gradient. This works great, then I added a div with a calling of a png pattern which I want to repeat both x and y (basically to repeat all over the background gradient), now this works but only for repeat-x not repeat-y. I can't seem to force this to repeat everywhere. I've looked on google etc etc but I can't find anything.
The CSS is below
and this is just calling stuff in the body tag then i've got the Div calling the overbody ID.
Any help with this would be awesome
Chris
My background image on the body tag works fine and does a repeat-x as it is a 1px wide gradient. This works great, then I added a div with a calling of a png pattern which I want to repeat both x and y (basically to repeat all over the background gradient), now this works but only for repeat-x not repeat-y. I can't seem to force this to repeat everywhere. I've looked on google etc etc but I can't find anything.
The CSS is below
Code:
body {margin: 0;padding: 0;background: #FFFFFF url(images/bg2.jpg) bottom left repeat-x fixed;font: 0.80em Arial, sans-serif; color: #666666; line-height: 18px;}#overbody {background-image: url(images/bgTop.png);background-repeat: repeat-x repeat-y;}
and this is just calling stuff in the body tag then i've got the Div calling the overbody ID.
Any help with this would be awesome
Chris