Hi, I have a problem with my layout. I wnt to have a part of that bar to go under my banner, but when I'm positionning it, it goes over the bar. How to change the behaviour?
That's the code I'm using:
div.banner {
position: absolute;
top: 0px;
left: 0px;
}
div.top {
position: absolute;
top: 100px;
left: 0px; but z-index is probably what you need.
Give banner or top a z-index:1; and the other z-index:100;
That's the code I'm using:
div.banner {
position: absolute;
top: 0px;
left: 0px;
}
div.top {
position: absolute;
top: 100px;
left: 0px; but z-index is probably what you need.
Give banner or top a z-index:1; and the other z-index:100;