Forum Moderators: not2easy
How can I send the image behind my background layer.
Thanks
How can I send the image behind my background layer.
You can't. That's why it's called a background image.
You could absolutely position a div overtop of your whole layout with a high z-index then apply the grid as BG on that, but this would place the grid above your text, too. It would also make your links unclickable, your text unselectable, your forms unfilloutable, etc.
cEM
<div
style="position: absolute;
top: 0px;
bottom: 0px;
left: 0px;
right: 0px;
background: url(../path/gridthing.gif)">
</div>
to your page, make sure it is the last item before the </body>-element...
===== _BEWARE_ =====
Absolute positioning seems to be an issue with (at least) MSIE/Mac (as far as I know, this beast isn't really capable to correctly render absolute positioned element of any kind, at least I couldn't do it...)