Cambia el color de fondo en la vista del foro de los threads que sean sticky (Adheridos o importantes).
Buscá el template "Threadbit"
AdminCP -> Styles & Templates -> Style Manager -> Edit Templates -> Threadbit
Buscá:
Código PHP:
<td class="alt1" id="td_threadtitle_$thread[realthreadid]" title="$thread[preview]">
Reemplazar por:
Código PHP:
<!-- Sticky Color -->
<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>
<!-- /Sticky Color -->
Ahora creá la clase CSS
ACP -> Styles & Templates -> Style Manager -> Style Name -> Main CSS -> Additional CSS Definitions
Agregá lo siguiente:
Código PHP:
.stickybg
{
background-color: #333333;
}
Cambiá el background-color por el que vos quieras.