ENXF NET
Administrator
Staff member
Administrator
Moderator
+Lifetime VIP+
S.V.I.P.S Member
S.V.I.P Member
V.I.P Member
Collaborate
Registered
- Joined
- Nov 13, 2018
- Messages
- 26,177
- Points
- 823
Reputation:
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...