I have a div that stand for the logo, and I have another div that stand for a slide show. The slide show div is under the logo div, and I want it to be under the it and behind it.
This is what I have:
HTML
<div id="site-container">
<div id="header-container">
<div id="logo"></div>
</div>
<div id="slide"></div>
</div>
CSS
#logo {
background:url(img/logo.png) no-repeat left top;
width:259px;
height:147px;
float:left;
}
#slide {
background:url(img/slide.png) no-repeat left top;
width:776px;
height:437px;
float:left;
}
I tried to use z position, but it turns to be something I dont want it to. Any why to make the logo div be a top layer without moving its correct position?