Alternating line colours possible?

Hey there,

is it possible to have alternating line colours on the topics overview?
I think it would easier readable with alternating colours from line to line.

Thanks
Manuel

you should be able to do this easily enough with user CSS using even/odd selectors: CSS: even and odd rules

Ah, thanks a lot.

If someone won’t to have this too, i simply added this custom CSS:

div.hl:nth-child(even) {background: #FFF;}
div.hl:nth-child(odd) {background: #F5F5F5;}
div.hl.Unread:nth-child(even) {background: #FFF;}
div.hl.Unread:nth-child(odd) {background: #F5F5F5;}

this is cool @ManuelW thanks
but the alternate line color do not show up, when “Combined mode” is enable