My problem is related to Drupal and the use of the JCarousel module for my views. I’m having a few problems with this, namely in getting a jcarousel like view style but with 2 rows instead of one. With the following jcarousel-view.tpl.php in my theme folder, I was able to somewhat get further:
<?php /** * @file jcarousel-view.tpl.php * View template to display a list as a carousel. */ ?> <ul class="<?php print $jcarousel_classes; ?>"> <?php $i=0; $rows_number=2; //you can change the number of rows ?> <?php foreach ($rows as $id => $row): ?> <?php if ($i % $rows_number == 0): ?> <li class="<?php print $classes[$id]; ?>"> <?php endif; ?> <?php print $row; ?> <?php if ($i % $rows_number == ($rows_number - 1)): ?> </li> <?php endif; ?> <?php $i++; ?> <?php endforeach; ?> <?php if ($i % $rows_number != 0): ?> </li> <?php endif; ?> </ul>
Here is the end result:
As you can see, it groups each set of fields for each item into a common column and not separated, so I cannot create a full border for each individual item.
How can I resolve this?