Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: CSS Trick – How to style Activity Stream odd and even posts.


Andy Peatling
Keymaster

@apeatling

Or via jQuery:

j('div.activity ul li').each( function(i) {
if ( i % 2 != 1 )
j(this).addClass('alt');
});

Skip to toolbar