nitter
Devin Price
@devinsays
14 Jul 2010
Print a clear every third loop: <?php if (ceil($count / 3) == ($count / 3)) { echo '<div class="clear"></div>'; } ?>
1
Aaron Parecki
@aaronpk
14 Jul 2010
Replying to
@devinsays
@devinsays
The condition is better written as <?php if($count % 3 == 2) ?> http://aaron.pk/1Ft
Jul 14, 2010 · 3:35 PM UTC