XF 2.2 Two-color tags?

Nookster

New member
Hi, guys! Is it possible in Xenforo to make tags two colored?
I had such addon at my old vb forum and it is the best way to distinguish different tags in a cloud in my eyes.
Example:
1664364550024.webp
 
Solution
CSS:
a.tagCloud-tag:nth-child(even) { color: #FF0000; }
a.tagCloud-tag:nth-child(odd) { color: #FF0000; }
a.tagCloud-tag.tagCloud-tagLevel1 { color:#FF0000; }
a.tagCloud-tag.tagCloud-tagLevel2 { color:#FF0000; }
First changes every even-numbered child in the tag list, second changes even-numbered child.

Third and fourth are existing classes that can be used but is not in a specific order in the tag list.
CSS:
a.tagCloud-tag:nth-child(even) { color: #FF0000; }
a.tagCloud-tag:nth-child(odd) { color: #FF0000; }
a.tagCloud-tag.tagCloud-tagLevel1 { color:#FF0000; }
a.tagCloud-tag.tagCloud-tagLevel2 { color:#FF0000; }
First changes every even-numbered child in the tag list, second changes even-numbered child.

Third and fourth are existing classes that can be used but is not in a specific order in the tag list.
 
Solution
Top Bottom