Hi everyone,
i'd like to know if it's possible to invert the order of the spans inside a bootstrap grid (v. 2.3.2, i know it's old, but it's the one used by the template of the website i'm currently working on).
To better clarify what i'm trying to achieve:
Let's say i have this grid on desktop:
<div class="container-fluid">
<div class="row-fluid">
<div class="span6">IMG</div><div class="span6">TEXT</div>
</div>
<div class="row-fluid">
<div class="span6">TEXT</div><div class="span6">IMG</div>
</div>
</div>
Is it possible to invert the order, having it to look on mobile like this:
IMG
TEXT
IMG
TEXT
instead of what would be normally displayed (IMG->TEXT->TEXT->IMG)
Thanks in advance, have a nice day!