I would like to have a Wrapper-Top layer on top of another. I set the z-index and position , which should be enough. Did I miss something? Here is the site : Thanks in advance.
EDIT: here is the code I used:
<body> <div class="Wrapper-Top"> </div> <div class="Wrapper-Middle"> hjklhjkhkjlhjkl </div> </body>
.Wrapper-Top { min-width: 980px; width: 100%; height: 179px; top: 0px; left: 0px; background:url(img/header-bg.png) repeat-x 50% 0%; z-index: 20; } .Wrapper-Middle { min-width: 980px; width: 100%; height: 300px; margin: 0 auto; background: #eee; top: 160px; left: 0px; position: absolute; z-index: 10; text-align: center; }
source share