In the previous question, I was able to resolve the image in one line to overlap the content under it. However, I realized that now the text and other content that overlaps are actually reset and destroy the format. See an updated example here . In short:
<div class="container" role="main"> <div class="row" id="overlap"> </div> <div class="jumbotron"> </div> </div>
CSS
@media (min-width: 992px) { #overlap { height: 70px; } }
How can I make sure that the content in the .jumbotron div .jumbotron not forcibly disabled?
css twitter-bootstrap-3
Abdullah jibaly
source share