Ben bir 3 sütun yapmak ve üçüncü sütun last
sınıf eklemek istiyorum. Bu kod çalıştı:
<?php for ($i = 0; $i < 9; $i = $i + 4) { //can't touch this line ?>
<?php for ($j = $i; $j < ($i + 4); $j++) { //can't touch this line ?>
<?php $counter=0; ?>
<div class="span-5<?php if ($counter % 3 == 0) { echo " last"; } ?>">
Info
</div>
<?php } ?>
<?php } ?>
ama yardımcı olmuyor. (Bu ikinci sütuna last
class atar)