XenForo Dark style and EXTRA.css

R

Robert9

Guest
I have a css in extra.css to show alternating colors for forums in forum list.

What I have to do to have this in two versions for light/dark, please?

CSS:

Code:
.node--depth2 {
background:green;   
}
.node--depth2:nth-child(odd) {
background:orange;   
}

Continue reading...