views:

76

answers:

1

hi people, I wanna make change in css class every 3 loops. In the first three I want to use the CSS class A, in the next three I want to use the CSS class B, in the next three I want to use the CSS class A again and so on.

can anyone help? Thanks

+2  A: 
{% cycle "A" "A" "A" "B" "B" "B" %}
Ignacio Vazquez-Abrams
just what I needed! thanks!
eos87