Trying to add the text on top of the image. I tried adding relative and absolute positioning to the divs and z-index. Anyone know why its not working as intended?
<div class="container banner bg-white">
<div class="row">
<div class="col-lg-12 banner-image" style="position: relative;z-index:-1;">
<img src="http://7-themes.com/data_images/collection/3/4446673-blue-wallpapers.png" class="img-responsive">
</div>
<div class="banner-box-outer" style="position: absolute;">
<h1 class="text-dark-blue">
Some text
<br> tittle
</h1>
<div class="banner-list">
<ul class="list-group">
<li class="list-group-item">
<img src="https://" alt="Tick" class="banner-list-tick"> 1 point
</li>
<li class="list-group-item" style="display:inline;">
<img src="https://" alt="Tick" class="banner-list-tick"> 1 point
</li>
<li class="list-group-item">
<img src="https://" alt="Tick" class="banner-list-tick">1 point
<br><span style="font-size:12px; "> som e text</span>
</li>
</ul>
</div>
</div>
</div>
</div>
position: relativeto the containing parent element.container.banner, then addtop: 0;to.banner-box-outer(which will now offset its position to its nearest/closest relative parent).