- Para XenForo...
-
- 1.0.x
- 1.1.x
- 1.2.x
- Autor
- lms
- Imagen del autor
Crea una plantilla y llámala (por ejemplo) ad_bannerMio y en ella pones este código
Guárdala y crea una nueva plantilla llamada ad_bannerMio.css y en ella pones
En la plantilla ad_header poner debajo del hook:
Espero que os rule bien
Salud2
Insertar CODE, HTML o PHP:
<xen:require css="ad_bannerMio.css"/>
<div id="bannerMio" class="bannerMio">
<a href="http://www.mi_url" target="_blank"><img src="mi_banner.jpg" /></a>
</div>
Insertar CODE, HTML o PHP:
#bannerMio { max-width: 468px; max-height: 60px;float:right; }
.bannerMio { width: 468px; height: 60px; }
<xen:if is="@enableResponsive">
@media(max-width: @maxResponsiveWideWidth) { #bannerMio { max-width:421;max-height:54px; }
#bannerMio img { max-width:421;max-height:54px; } }
@media(max-width: @maxResponsiveMediumWidth) { #bannerMio { max-width:316px; }
#bannerMio img { max-width:316px; } }
@media(max-width: @maxResponsiveNarrowWidth) { #bannerMio { max-width:158px; }
#bannerMio img { max-width:158px; } }
</xen:if>
Insertar CODE, HTML o PHP:
<xen:include template="ad_bannerMio" />
Espero que os rule bien
Salud2