Created
April 27, 2017 08:23
-
-
Save kirandash/9daccf9deb9c241acb313f6843c22d44 to your computer and use it in GitHub Desktop.
Clear columns for uneven height
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
if($count %2 == 0): echo "<div class='clearfix visible-xs'></div>"; endif; | |
if($count %4 == 0): echo "<div class='clearfix hidden-xs'></div>"; endif; | |
$count++; | |
endwhile; ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment