Changing code to remove 2 records for the first line

Here is how I got it to where I wanted it:

Change $class = "span".($k < 2 ? 6 : 12/(count($members)-2));
to
$class = "span".($k < 0 ? 6 : 12/(count($members)-2));
and remove this section completely:
($k === 2 ? '<div class="clearboth"></div>' : ''),

I am sure there are other (better?) ways of getting to the same result but this is the way I did it.