XF 1.4 Threads color

Tony008

Member
Hello Everyone.
Am new in Xenforo and am not so familiar with the software.

Id like to have the first and the third thread one color and the second and forth thread different color:

threads.png


Also id like to make this on the thread inside:

threads.png


THANK YOU!!!
 
The class you would need to use is discussionListItem .

I doubt it is possible for threads though as they aren't in sequential order so won't be odd-even-odd.
 
And if you want the stats column to follow suite add this to EXTRA.css

Code:
.discussionListItem .stats {
background: none !important;
}
upload_2014-11-17_12-36-24.webp
 
Thejackarmy posted the right solution thank you!

If someone have added another color for the threed the color of the sticky will change also.... So you have to add this so you can have different color for the sticky:

.sticky:nth-child(even) {
background-color: #FCFFDA !important;
border: 1px solid #F39D00 !important;
}
 
Top Bottom