Quote:
Originally Posted by da420
Its not working for me for some reason in my v3.5.1...
I replace this line in threadbit:
<td class="alt1" id="td_title_$thread[realthreadid]" title="$thread[preview]">
With this line:
<if condition="$thread['sticky'] == 1">
<td class="alt2" id="td_title_$thread[realthreadid]" title="$thread[preview]">
<else />
<td class="alt1" id="td_title_$thread[realthreadid]" title="$thread[preview]">
</if>
and then I go to the CSS definitions, and add this to the code at the bottom:
.stickybg
{
background-color: #00FF00;
color: #000000;
}
I would much appreciate some help, Thanks!
|
The following will fix your issue:
Code:
<if condition="$thread['sticky'] == 1">
<td class="stickybg" id="td_title_$thread[realthreadid]" title="$thread[preview]">
<else />
<td class="alt1" id="td_title_$thread[realthreadid]" title="$thread[preview]">
</if>
You defined stickybg but you weren't utilizing it.