Hi all,
I'm having some trouble with div layers and i was wondering if y'all could help.
I have one set of div boxes that I'd like to be UNDER another set.
Here's my styles:
div.messagepost{
padding: 0.5em;
border: solid;
border-width: 1px;
border-color:rgb(0,0,0);
text-align: left;
z-index: 5;
}
div.berrybox{
z-index: 2;
position: fixed;
top:500px;
left:130px;
}
The message post ones are made on the fly by PHP, and the berrybox ones are individually made in html. The problem is that no matter what values I put for the z-indexes, the berry box is always OVER the message posts. Oh, in the html, the berryboxes have an img in them, (if that makes any difference).
Thanks for your time!
gabe
EDIT:
The message boxes are also in a table if that has anything to do with it. Perhaps I need to set the z-index of the table if that's even possible?