Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

On a web I have a transparent layer to cover the page on click and only show a few page elements. But it doesn't matter what I have for the z-index. That layer covers one element I would like to show. The element with id player should be shown over the layer. What should I specify differently for layer and for player for this?

  <div id="layer" style="width: 100%; height: 100%; visibility: visible; z-index: 99;"> </div>

  <div id="page" style="margin: 0 auto; position: relative; top: 80px;"> <!-- Begin page div -->

  <div id="player" style="width: 506px; height: 377px; border: 2px solid white; z-index: 99999; display: inline; float:left; margin-top: 12px; margin-left: 12px; margin-right:0px; overflow: hidden;">

The styles for layer are these.

#layer {
    position: absolute; 
    top: 0px; 
    left: 0px; 
    width: 100%; 
    height: 100%; 
    background: black; 
    filter:alpha(opacity=80); 
    opacity: 0.80; 
    z-index: 999;" 
}
share|improve this question

2 Answers

up vote 0 down vote accepted

You need to set position: relative; for #player div.

share|improve this answer
Thanks a lot! That fixed it! – user823527 Apr 20 '12 at 1:15

One thing to check is that you should have "position:relative;" applied to the parent container of these divs for the z-indexing to be recognized and applied.

share|improve this answer
That did not help. – user823527 Apr 19 '12 at 19:19

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.