Re: display a module over the top of the header image If you mean pleacing a module over a background images, the best way is to have the css determine the background image like this:
.yourclass {
background-image: url(../images/backgroundimage.jpg);
background-position: top; *
background-repeat: no-repeat; **
}
* other options include: center, bottom, left, or right or a combination like; top right.
** other options include: repeat, repeat-x, repeat-y.
So, if you add this class to your table or a cell, it will have the background and items in the table/cell won't move it or compete with it.
Let us know how it goes. |