Support How to change thread list background color

mtumbad

Registered
Hello! i want to change thread list background color without changing block body bg color help me please
 

XenForo

Administrative
try
extra.less
CSS:
.structItem--thread:nth-child(even) {background-color:#add8e6!important}
.structItem--thread:nth-child(odd) {background-color: #ffffe0!important}
  • For forum list this should work
CSS:
.node:nth-child(even) {background-color: #add8e6!important}
.node:nth-child(odd) {background-color: #ffffe0!important}
 
Back
Top Bottom