Skip to content

Instantly share code, notes, and snippets.

@ryaan-anthony
Created January 29, 2014 20:45
Show Gist options
  • Select an option

  • Save ryaan-anthony/8696666 to your computer and use it in GitHub Desktop.

Select an option

Save ryaan-anthony/8696666 to your computer and use it in GitHub Desktop.
<?php
$i++;
$_class = '';
if ($i % 4 == 0) $_class .= ' last-4-col';
if (($i - 1) % 4 == 0) $_class .= ' first-4-col';
if ($i % 3 == 0) $_class .= ' last-3-col';
if (($i - 1) % 3 == 0) $_class .= ' first-3-col';
$_class .= ($i % 2 == 0) ? ' even' : ' odd';
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment