I'm currently working with the materialize framework and am attempting to change the order of columns on mobile view. Specifically, I want the BUY BUTTON to appear before the CONTENT section on phones. I've been experimenting with pull and push but haven't been successful so far. Any suggestions?
Appreciate any assistance you can provide.
<div class="row">
<div class="col s12 m3 l3">
<img src="">
</div>
<div class="row">
<div class="col s12 m6 push-m6 l7">CONTENT</div>
<div class="col s12 m6 pull-m6 l2">BUY BUTTON</div>
</div>
</div>