Is there a way to create 2 background images in CSS? First image located at the very top of a page > the second image located at the very bootom of a page? Some help or info regarding this issue would be most appreciated. Thanks
div.doubleimage { background-image: url(imageONE.jpg), url(imageTwo.jpg); background-repeat: repeat-y; background-position: top left, top right; width: 100px; height: 100px; border: 1px solid #000000; } ----------------------- PS. Only Safari IE and Fire Not Worked
Sure. Just create two divs (header and footer) and then apply a background image to each using CSS. You can then use the background-position CSS element to adjust the position of each image within the divs, if needed.
What i do is just put it inside two Div's so we have <div id="wrap"> <div id="wrap2"> </div></div> Then set the background images for wrap and wrap 2 simple as!!