I tried for too long to overlay content on top of the twitter bootstrap.
Just overlay a div on top of the carousel without preventing the carousel navigation to be no longer clickable + prevent the slides ( im using images 300 height ) to overlay the div's content. ( the div is a navigation menu )
Tried so far many times and made a jsfiddle:
.outer {
    position: relative;
}
.ontop {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right:0;
    z-index: 99999;
}
#wrapper_slider{
    height: 360px;
    background-color: red;
    border: solid red 10px;
}
#bar{
    height: 40px;
    background-color: green;
}   
Who knows how to correctly approach this problem?
 
     
    