Versión phpBB: phpBB3 (3.0.7-PL1)
MODs Instalados: -
Plantilla(s) usada(s): Hermes (basada en subsilver)
Servidor: Linux gratuito (ZobyHost)
Actualización desde otra versión: Si - 3.0.6
Conversión desde otro sistema de foros: No
Saludos, espero puedan ayudarme con mi problema. Nunca tuve la necesidad de hacer un tema por mi mismo, porque siempre encontré la solución a todo leyendo, pero intentaré ser lo más explicativo posible, aunque no haya mucho por decir.
Estos últimos días he estado intentando modificar mi plantilla y adaptar el overall_header.html y el overall_footer.html a lo que es el estilo de la página principal de mi foro (que utiliza un sistema Joomla). Probando y editando conseguí una forma agradable de tener un navbar similar al de Joomla, y el mismo header. La barra la hice con tres mapas de imágenes y códigos que cambian las imágenes según las condiciones (conectados, conectados con mps nuevos e invitados). El problema estuvo cuando quise subir mi cabecera. Todo funciona perfecto excepto que..las imágenes no aparecen. Es decir, primero aparecen cuadros como si las imágenes (header y navbar) estuvieran allí, pero luego se esfuman y dejan como cabecera la primera parte del índice que dice "Su última visita fue..." y otras cosas.
El código en cuestión es el siguiente..
Código: Seleccionar todo
<!-- header start -->
<div id="navbar">
<!-- IF not S_IS_BOT -->
<!-- IF S_USER_LOGGED_IN -->
<!-- IF not S_USER_NEW_PRIVMSG -->
<img src="http://www.theboulevardsrpg.com.ar/foro/styles/hermes/theme/images/navbar_on.jpg" width="1006" height="22" border="0" usemap="#navbar" />
<MAP NAME="navbar">
<AREA SHAPE=RECT COORDS="134,0,181,22" HREF="http://www.theboulevardsrpg.com.ar/">
<AREA SHAPE=RECT COORDS="200,0,266,22" HREF="http://www.theboulevardsrpg.com.ar/index.php/comunidad/">
<AREA SHAPE=RECT COORDS="285,0,320,22" HREF="http://www.theboulevardsrpg.com.ar/foro/">
<AREA SHAPE=RECT COORDS="338,0,523,22" HREF="http://www.theboulevardsrpg.com.ar/foro/ucp.php">
<AREA SHAPE=RECT COORDS="542,0,561,22" HREF="http://www.theboulevardsrpg.com.ar/foro/ucp.php?i=pm&folder=inbox">
<AREA SHAPE=RECT COORDS="579,0,603,22" HREF="http://www.theboulevardsrpg.com.ar/foro/faq.php">
<AREA SHAPE=RECT COORDS="621,0,671,22" HREF="http://www.theboulevardsrpg.com.ar/foro/search.php">
<AREA SHAPE=RECT COORDS="688,0,746,22" HREF="http://www.theboulevardsrpg.com.ar/foro/memberlist.php">
<AREA SHAPE=RECT COORDS="765,0,865,22" HREF="http://www.theboulevardsrpg.com.ar/foro/ucp.php?mode=logout">
</MAP>
<!-- ENDIF -->
<!-- IF S_USER_NEW_PRIVMSG -->
<img src="http://www.theboulevardsrpg.com.ar/foro/styles/hermes/theme/images/navbar_on_newmp.jpg" width="800" height="50" border="0" usemap="#mp" />
<MAP NAME="mp">
<AREA SHAPE=RECT COORDS="134,0,181,22" HREF="http://www.theboulevardsrpg.com.ar/">
<AREA SHAPE=RECT COORDS="200,0,266,22" HREF="http://www.theboulevardsrpg.com.ar/index.php/comunidad/">
<AREA SHAPE=RECT COORDS="285,0,320,22" HREF="http://www.theboulevardsrpg.com.ar/foro/">
<AREA SHAPE=RECT COORDS="338,0,523,22" HREF="http://www.theboulevardsrpg.com.ar/foro/ucp.php">
<AREA SHAPE=RECT COORDS="542,0,561,22" HREF="http://www.theboulevardsrpg.com.ar/foro/ucp.php?i=pm&folder=inbox">
<AREA SHAPE=RECT COORDS="579,0,603,22" HREF="http://www.theboulevardsrpg.com.ar/foro/faq.php">
<AREA SHAPE=RECT COORDS="621,0,671,22" HREF="http://www.theboulevardsrpg.com.ar/foro/search.php">
<AREA SHAPE=RECT COORDS="688,0,746,22" HREF="http://www.theboulevardsrpg.com.ar/foro/memberlist.php">
<AREA SHAPE=RECT COORDS="765,0,865,22" HREF="http://www.theboulevardsrpg.com.ar/foro/ucp.php?mode=logout">
</MAP>
<!-- ENDIF -->
<!-- ENDIF -->
<!-- ENDIF -->
<!-- IF not S_IS_BOT -->
<!-- IF not S_USER_LOGGED_IN -->
<img src="http://www.theboulevardsrpg.com.ar/foro/styles/hermes/theme/images/navbar_off.jpg" width="800" height="50" border="0" usemap="#guest" />
<MAP NAME="guest">
<AREA SHAPE=RECT COORDS="134,0,181,22" HREF="http://www.theboulevardsrpg.com.ar/">
<AREA SHAPE=RECT COORDS="200,0,266,22" HREF="http://www.theboulevardsrpg.com.ar/index.php/comunidad/">
<AREA SHAPE=RECT COORDS="285,0,320,22" HREF="http://www.theboulevardsrpg.com.ar/foro/">
<AREA SHAPE=RECT COORDS="385,0,468,22" HREF="http://www.theboulevardsrpg.com.ar/foro/ucp.php?mode=register">
<AREA SHAPE=RECT COORDS="579,0,603,22" HREF="http://www.theboulevardsrpg.com.ar/foro/faq.php">
<AREA SHAPE=RECT COORDS="621,0,671,22" HREF="http://www.theboulevardsrpg.com.ar/foro/search.php">
<AREA SHAPE=RECT COORDS="784,0,873,22" HREF="http://www.theboulevardsrpg.com.ar/foro/ucp.php?mode=login">
</MAP>
<!-- ENDIF -->
<!-- ENDIF -->
</div>
<div id="header">
<img src="http://www.theboulevardsrpg.com.ar/foro/styles/hermes/imageset/site_logo.png" width="1006" height="300" border="0" />
</div>
<!-- header end -->