@hal9000
Not recently active
-
Siddharth Jagannath posted on the forum topic Alternating comment colours in the activity stream on default theme in the group Creating & Extending: 13 years, 5 months ago
@hal9000 to get alternating colors on any of your loops (activity, members, groups, blog listings, forums, whatever)… using this code (uses CSS3) li { background: green; } li:nth-child(odd) { background: red; } more specifically: in the default.css stylesheet of the buddypress default theme… you should find on line 396: ul.item-list li {…[Read more]