[Error]  Problema con los Ficons
* URL del foro: http://www.pokejer.260mb.com/ * Versión del foro: 1.6 * Actualización: Ninguna Bueno mirar he seguido el tuto de Ficons, y todo es...


Bueno mirar he seguido el tuto de Ficons, y todo es pero no se porque se me pone en el Indice la Imagen del Ficon, yo queria poner en cada Zona un ficons, pero se me ponen todas encima de cada categoria,este es el codigo que tengo en forumbit_depth2_forum:

Código:
<tr>
<td class="{$bgcolor}" align="center" valign="top" width="1"><img src="{$theme['imgdir']}/{$lightbulb['folder']}.gif" alt="{$lightbulb['altonoff']}" title="{$lightbulb['altonoff']}" class="ajax_mark_read" id="mark_read_{$forum['fid']}" /></td>
<td class="{$bgcolor}" align="center" valign="top" width="1"><img src="{$theme['imgdir']}/ficons/icon_{$forum['fid']}.png" widith="45" height="45" title="{$forum['name']}"/></td><td class="{$bgcolor}" valign="top">
<strong><a href="{$forum_url}">{$forum['name']}</a></strong>{$forum_viewers_text}<div class="smalltext">{$forum['description']}{$modlist}{$subforums}</div>
</td>
<td class="{$bgcolor}" valign="top" align="center" style="white-space: nowrap">{$threads}{$unapproved['unapproved_threads']}</td>
<td class="{$bgcolor}" valign="top" align="center" style="white-space: nowrap">{$posts}{$unapproved['unapproved_posts']}</td>
<td class="{$bgcolor}" valign="top" align="right" style="white-space: nowrap">{$lastpost}</td>
</tr>
{$codebuttons}
<img src="images/ficons/toad_32.png" width="48" height="48" alt="{$forum['Tecnologias']}" title="http://pokejer.260mb.com/forumdisplay.php?fid=63" /
Última modificación: 2 Nov, 2010, 10:51 am por Cluster.
Normal... Tienes la imagen suelta, y no dentro de una celda.

Prueba con esto:

Código:
<tr>
<td class="{$bgcolor}" align="center" valign="top" width="1"><img src="{$theme['imgdir']}/ficons/{$forum['fid']}.png" width="48" height="48" alt="{$forum['name']}" title="{$forum['name']}" /> <img src="{$theme['imgdir']}/{$lightbulb['folder']}.gif" alt="{$lightbulb['altonoff']}" title="{$lightbulb['altonoff']}" class="ajax_mark_read" id="mark_read_{$forum['fid']}" /></td>
<td class="{$bgcolor}" align="center" valign="top" width="1"><img src="{$theme['imgdir']}/ficons/icon_{$forum['fid']}.png" widith="45" height="45" title="{$forum['name']}"/></td><td class="{$bgcolor}" valign="top">
<strong><a href="{$forum_url}">{$forum['name']}</a></strong>{$forum_viewers_text}<div class="smalltext">{$forum['description']}{$modlist}{$subforums}</div>
</td>
<td class="{$bgcolor}" valign="top" align="center" style="white-space: nowrap">{$threads}{$unapproved['unapproved_threads']}</td>
<td class="{$bgcolor}" valign="top" align="center" style="white-space: nowrap">{$posts}{$unapproved['unapproved_posts']}</td>
<td class="{$bgcolor}" valign="top" align="right" style="white-space: nowrap">{$lastpost}</td>
</tr>
{$codebuttons}
Última modificación: 31 Oct, 2010, 8:39 am por Cluster.
Muchas gracias,me sirvio de Mucho porfin me funciona^^Te lo agradezco.