Diferente color para stickys y anuncios

Esta es una discusión para el tema Diferente color para stickys y anuncios en el foro Archivos de vBulletin 3.0 - 3.7, bajo la categoría Versiones Obsoletas de vBulletin - Temas Archivados; 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: Código: <td class="alt1" id="td_title_$thread[realthreadid]" title="$thread[preview]"> Y reemplaza ...
Página:


Resultados 1 al 2 de 2

Temas similares

  1. Por digweed en el foro Archivos de vBulletin 3.0 - 3.7
  2. Dos anuncios Respuestas: 3
    Por Sum en el foro Archivos de vBulletin 3.0 - 3.7
  3. Por ThE LeAdEr en el foro Archivos de vBulletin 3.0 - 3.7
  4. Por ciakakashi en el foro Archivos de vBulletin 3.0 - 3.7
  5. Por Walter en el foro Archivos de vBulletin 3.0 - 3.7
  1. #1
    Miembro especial Miembro de diamante Array Avatar de dbembibre
    Fecha de ingreso
    30 sep, 04
    Ubicación
    Madrid
    Mensajes
    518
    Gustado
    5 Veces
    Me Gustan
    0 Veces

    Predeterminado Diferente color para stickys y anuncios

    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:
    Código:
    <td class="alt1" id="td_title_$thread[realthreadid]" title="$thread[preview]">
    Y reemplaza con la siguiente:
    Código:
    <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&#241;ade lo siguiente:

    Código:
    .stickybg
    {
    	background-color: #E5E5E5;
    	color: #000000;
    }
    *Cambia el background color por el color que quieres que aparezca

    Mi contribuci&#243;n:

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

    Search this
    Código:
    <td class="alt2" 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:
    Código:
    <td class="stickybg" 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&#237;

  2. #2
    Miembro especial Miembro de diamante Array Avatar de DuckMan
    Fecha de ingreso
    20 oct, 04
    Ubicación
    Buenos Aires, Argentina
    Mensajes
    624
    Gustado
    0 Veces
    Me Gustan
    0 Veces

    Predeterminado Re: Diferente color para stickys y anuncios

    gracias por el hack amigo