Question

How can I put li tags around every 2 results in drupal views?

I have this;

result1 
result2
result3
result4

And I need this;

<li> result1 result2 </li>
<li> result3 result4 </li>

Thanks

Was it helpful?

Solution

In the template that loops through the results, you can make a counter and use that to add the li tags if needed. So if the counter is odd, add opening li tag in the start and if the counter is even, add the closing li tag.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top