here you go all, or you simply copy all from the notepad and open word pad and past and it will be perfect:
Quote:
Different Cell Color for Stickies
by Andrew111888
In ACP -> Styles & Templates -> Style Manager -> [desired style] -> Edit Templates -> threadbit
Find the following line:
<td class="alt1" id="td_threadtitle_$thread[realthreadid]" title="$thread[preview]">
and replace it with the following:
<if condition="$thread['sticky'] == 1">
<td class="alt2" id="td_threadtitle_$thread[realthreadid]" title="$thread[preview]">
<else />
<td class="alt1" id="td_threadtitle_$thread[realthreadid]" title="$thread[preview]">
</if>
####################################
####################################
####################################
If that is not enough of an offset, you could also do what I did.
========== STEP 1 ==========
In ACP -> Styles & Templates -> Style Manager -> [desired style] -> Edit Templates -> threadbit
Find the following line:
<td class="alt1" id="td_title_$thread[realthreadid]" title="$thread[preview]">
and replace it with the following:
<if condition="$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>
========== STEP 2 ==========
In ACP -> Styles & Templates -> Style Manager -> [desired style] -> Main CSS -> Additional CSS Definitions
Add the following declaration:
.stickybg
{
background-color: #hex;
color: #000000;
}
and simply replace hex with the desired hexcode.
|