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:
Continue reading...
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...