I realy liked the Idea from ericgtr
I modified it a little further.
2 options:
1) Highlight only 0 reply threads but no stickies (that is my choice)
Code:
<if condition="$thread[replycount] != 0">
<td class="alt1" id="td_threadtitle_$thread[realthreadid]" title="$thread[preview]">
<else />
<if condition="$thread['sticky'] == 1 AND $thread[replycount] == 0">
<td class="alt1" id="td_threadtitle_$thread[realthreadid]" title="$thread[preview]">
<else />
<td class="zeroreplybg" id="td_threadtitle_$thread[realthreadid]" title="$thread[preview]">
</if>
</if>
and for the css
Code:
.zeroreplybg
{
background-color: #ebf0d2;
color: #000000;
}
2) highlight both (same colors)
Code:
<if condition="$thread[replycount] == 0 OR $thread['sticky'] == 1">
<td class="stickybg" id="td_threadtitle_$thread[realthreadid]" title="$thread[preview]">
<else />
<td class="alt1" id="td_threadtitle_$thread[realthreadid]" title="$thread[preview]">
</if>
and for the css
Code:
.stickybg
{
background-color: #ebf0d2;
color: #000000;
}
Thx *install*