Diferente color para stickys y anuncios

dbembibre Seguir

Gamma
¡Usuario con pocos negocios! ¡Utiliza siempre saldo de Forobeta!
Desde
30 Sep 2004
Mensajes
453
Crédito al hack original por Andrew111888
http://www.vbulletin.org/forum/showthread.php?t=94328

In ACP -> Styles & Templates -> Style Manager -> [tu estilo] -> Edit Templates -> threadbit

Busca la siguiente línea:
Insertar CODE, HTML o PHP:
<td class="alt1" id="td_title_$thread[realthreadid]" title="$thread[preview]">

Y reemplaza con la siguiente:
Insertar CODE, HTML o PHP:
<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>


In ACP -> Styles & Templates -> Style Manager -> [tu estilo] -> Main CSS -> Additional CSS Definitions

Añade lo siguiente:

Insertar CODE, HTML o PHP:
.stickybg
{
	background-color: #E5E5E5;
	color: #000000;
}
*Cambia el background color por el color que quieres que aparezca

Mi contribución:

In ACP -> Styles & Templates -> Style Manager -> [tu estilo] -> Edit Templates -> forumdisplay_announcement[/B]

Search this
Insertar CODE, HTML o PHP:
<td class="[B]alt2[/B]" colspan="<if condition="$show['threadicons'] AND $show['inlinemod']">6<else /><if condition="!$show['threadicons'] AND !$show['inlinemod']">4<else />5</if></if>">
		<div>

Replace with this:
Insertar CODE, HTML o PHP:
<td class="[B]stickybg[/B]" colspan="<if condition="$show['threadicons'] AND $show['inlinemod']">6<else /><if condition="!$show['threadicons'] AND !$show['inlinemod']">4<else />5</if></if>">
		<div>

El resultado aquí
 
Arriba