i need to reorder my columns on small devices. i'm trying to use col-sm-push
and col-sm-pull
but this not work and i don't understand why.
<div class="row no-margin white max-width">
<div class="col-xs-12 col-sm-12 col-sm-push-12 col-md-6 no-padding">
<div class="image">
A
</div>
</div>
<div class="col-xs-12 col-sm-12 col-sm-pull-12 col-md-6 no-padding">
<div class="item">
<div class="title">
</div>
<div class="info">
B
</div>
</div>
</div>
</div>
What is the problem?
Thank you