Style Forumlist alternate colours

hieucocc

New member
demo:
1341458456251.png


Thanks you so much, so much :D
 
Something such as the following CSS ought to work. I haven't tried this though and I'm new to xF:

Code:
.nodeList .node:nth-child(2n)
{
    background: #d2d2d2; /* replace this with your alt colour */
}
 
Something such as the following CSS ought to work. I haven't tried this though and I'm new to xF:

Code:
.nodeList .node:nth-child(2n)
{
    background: #d2d2d2; /* replace this with your alt colour */
}
Older browsers do not support this however.
 
Top Bottom