My problem with this is that I can't get it right with background coloring. Left column always 'bleeds' into the top of the right column. Help guys, I'm trying to fix this for three days now.
Here's my html code:
<div class="container-fluid">
<div class="row blue-background">
<div class="col-lg-6 col-xs-12 col-lg-offset-1">
<h1>Text here</h1>
</div>
<div class="col-lg-5 col-xs-12 gray-background">
<h2>Another text here</h2>
</div>
</div><!-- .row -->
</div><!-- .container-fluid -->
And in my custom CSS file this classes have only background: /value_of_color/
My CSS code:
.blue-background {
background-color: blue;
}
.gray-background {
background-color: #eaeaea;
}