I'm trying to create a page with a full width video banner at the top then some content underneath. At the moment whenever I add any additional content it appears on top of the video, instead of below it and i'm not sure why.
HTML
<div id="content">
<div class="homepageContainer">
<nav id="header" class="opaque navbar navbar-default navbar-fixed-top hidden-print navbar-megamenu" role="navigation">
...
</nav>
<div class="jumbotron jumbotron-cover">
<div class="container-fluid">
<div class="row">
<div class="col-xs-12 col-sm-8 col-md-6 col-sm-push-2 col-md-push-3">
<div class="video-placeholder" style="background-image:url(urlOfImage)">
</div>
</div>
</div>
</div>
</div>
<div class="container">
<div class="row hero-content text-center">
<div class="col-sm-12 col-md-12 col-lg-8 col-lg-offset-2">
<img src="media/img/logo.png" class="logo animated fadeInDown">
<h1 class="animated fadeInDown top-bottom-borders">Some content text here.</h1>
</div>
</div>
</div>
</div>
</div>