My goal is to include a div with a specific title above the JQuery Backstretch images. The current code setup is as follows:
<div class="col-md-4 col-xs-12">
<div class="imgs">
</div>
</div>
When I try to insert any content before the inner div within the outer div (as shown below), the stretching effect does not work properly.
<div class="col-md-4 col-xs-12">
<div class='row'>some text</div>
<div class='row'>
<div class="imgs">
</div
</div>
</div>
I attempted to recreate this issue on jsfiddle (http://jsfiddle.net/krishnasarma/err1fkcd/) but the images are not displaying at all.