My code structure is set up like this:
<div id="main-parent">
<div class="child2">
<div>
child2
</div>
</div>
<div>child3</div>
-
-
-
-
<div class="child-n">
<div class="row">
<div class="child-n1 col-sm-7 col-sm-push-5">child n</div>
</div>
</div>
</div>
In this structure, I am looking to replace the classes (col-sm-7 col-sm-push-5) with the class (col-sm-12).
I only want to change the parent-child and sibling logic for these classes.
Any suggestions or solutions would be greatly appreciated.