I've got a stacking col with an image, title and description. On small screen (xs) i want the title to appear over the image and not beneath. Is it possible with bs 3 ?
html
<div class="container">
<div class="row">
<div class="col-sm-12 col-xs-12 col-xs-push-12 red"> Image </div>
<div class="col-sm-12 col-xs-12 col-xs-pull-12 blue"> Title </div>
<div class="col-sm-12 green"> Description </div>
</div>
</div>
css
.red {
background-color : red;
}
.green {
background-color : green;
}
.blue {
background-color : blue;
}