Reputation: 8359
I have a image that get displayed over the window that pops up, it shouldnt do that. The image should be underneath the window popup.
I guess I need to do something in the css?
here is the css for the image:
.ribbon{
background:url(../images/ribbon.png) no-repeat;
position:absolute;
width:152px;
height:132px;
z-index:999999999;
margin:-4px 0 0 -4px;
}
Upvotes: 1
Views: 463
Reputation: 12447
Just remove or change that extremely huge z-index
, which probably is greater than the popup's z-index
!
Upvotes: 0
Reputation: 346
You should set the CSS "z-index:9999999;" property on the image to something lower than the z-index of the window that's popping up.
See if changing that to z-index:1; fixes it perhaps.
Not having the window css as well though I can't tell what number it would be to make the image appear behind the popup.
Upvotes: 1