Hola gente de XenForo, bueno les traigo este thread que vi en XenForo y le pedí permiso al autor para publicarlo en este maravilloso foro...
Bueno esta modificacion trata de agregar una animación en ves de la comun imagen de "anclado" a los stickys...
Demo: http://www.comparteonline.net/forums/anuncios.4/
Imagen:
En la plantilla "Discussion_list.css" cambiar:
por:
y en la plantilla "thread_list_item" cambiar:
por:
Ahora solo nos queda subir la imagen "Sticky.gif" a "../styles/default/xenforo/icons/"
Y listo!
Tema Original: http://xenforo.com/community/threads/sticky-threads-with-animed-image.8986/
Realizado por: Allan
Bueno esta modificacion trata de agregar una animación en ves de la comun imagen de "anclado" a los stickys...
Demo: http://www.comparteonline.net/forums/anuncios.4/
Imagen:
En la plantilla "Discussion_list.css" cambiar:
HTML:
.discussionListItem .iconKey span
{
@property "dicussionListIcon";
margin-left: 3px;
text-indent: -10000em;
float: right;
background-repeat: no-repeat;
width: 16px;
height: 16px;
@property "/dicussionListIcon";
}
.discussionListItem .iconKey .sticky { background-image: url('@imagePath/xenforo/icons/sticky.png'); }
por:
HTML:
.discussionListItem .iconKey span
{
@property "dicussionListIcon";
margin-left: 3px;
text-indent: -10000em;
float: right;
background-repeat: no-repeat;
width: 67px;
height: 16px;
@property "/dicussionListIcon";
}
.discussionListItem .iconKey .sticky { background-image: url('@imagePath/xenforo/icons/sticky.gif'); }
y en la plantilla "thread_list_item" cambiar:
HTML:
<xen:if is="{$thread.sticky}"><span class="sticky" title="{xen:phrase sticky}">{xen:phrase sticky}</span></xen:if>
por:
HTML:
<xen:if is="{$thread.sticky}"><span class="sticky" title="{xen:phrase sticky}"><img src="@imagePath/xenforo/icons/sticky.gif"></span></xen:if>
Ahora solo nos queda subir la imagen "Sticky.gif" a "../styles/default/xenforo/icons/"
Y listo!
Tema Original: http://xenforo.com/community/threads/sticky-threads-with-animed-image.8986/
Realizado por: Allan