I'm trying to divide the background in 2 parts. Left with an image parallax and some text and the right one with 1 color and a button.
The problem is that if I don't set container-fluid the left side is not going to reach the edge of the screen but by setting that my text starts at the very beginning of the screen.
Here's my current code
HTML
<section class="parallax" data-overlay-color="8">
<div class="background-image">
<img src="img/backgrounds/bg-racks.jpg" alt="#">
</div>
<div class="container-fluid">
<div class="row">
<div class="col-md-6 text-left mt20">
<h2>Get 50<span class="bold"> Free Beats</span></h2>
<p class="lead">
Download <strong>50 Free Beats</strong> and start recording today!
</p>
</div>
<div class="col-md-6 text-left bg-theme pt50 pb50">
<a href="http://themeforest.net/user/vossendesign/portfolio?ref=VossenDesign" target="_blank" class="btn btn-md btn-primary btn-appear shadow-dark">
<span>Download Now <i class="ion-unlocked"></i></span>
</a>
</div>
</div>
</div>
</section>
CSS
.bg-theme { background-color : #4c51e0 }