Here is my code:
<? for($x = 0; $x < count($groupSmall); $x++){ ?>
<div class="col-md-3 meeting-item">
<img src="images/image.jpg" />
</div>
<? } ?>
I would like to add a new class to every 4th div in this loop. I know it can be done with Modulus but I can't get it to work.
Thanks!!!