Print a clear every third loop: <?php if (ceil($count / 3) == ($count / 3)) { echo '<div class="clear"></div>'; } ?>
1
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