Reputation: 1860
I want to add a div with some title over the JQuery Backstretch images. The code looks like:
<div class="col-md-4 col-xs-12">
<div class="imgs">
</div>
</div>
Here the inner div is used for backstretch. If I add any content prior to that within outer div, (like below) the stretch is not working.
<div class="col-md-4 col-xs-12">
<div class='row'>some text</div>
<div class='row'>
<div class="imgs">
</div
</div>
</div>
I was trying to replicate the scenario in jsfiddle (http://jsfiddle.net/krishnasarma/err1fkcd/) but its not showing the images at all.
Upvotes: 0
Views: 578
Reputation: 1274
Most likely you haven't specified dimensions for .imgs
div used for backstretch. Set desired width
and height
properties for that container.
Demo: http://jsfiddle.net/err1fkcd/3/
Upvotes: 2