Estilos y plantilas: Nesil Theme -> Índice - Plantillas ---> index --> y debajo de {$boardstats}

Código:
<dl class="forum_legend smalltext">
    <dt><img src="{$theme['imgdir']}/on.gif" alt="{$lang->new_posts}" title="{$lang->new_posts}" style="vertical-align: middle; padding-bottom: 4px;" /></dt>
    <dd>{$lang->new_posts}</dd>

    <dt><img src="{$theme['imgdir']}/off.gif" alt="{$lang->no_new_posts}" title="{$lang->no_new_posts}" style="vertical-align: middle; padding-bottom: 4px;" /></dt>
    <dd>{$lang->no_new_posts}</dd>

    <dt><img src="{$theme['imgdir']}/offlock.gif" alt="{$lang->forum_locked}" title="{$lang->forum_locked}" style="vertical-align: middle;" /></dt>
    <dd>{$lang->forum_locked}</dd>
</dl>

Borra todo ese codigo que te he dejado.


En conclucion te debe quedar asi:

Código:
<html>
<head>
<title>{$mybb->settings['bbname']}</title>
{$headerinclude}
{$metag}
<script type="text/javascript">
<!--
    lang.no_new_posts = "{$lang->no_new_posts}";
    lang.click_mark_read = "{$lang->click_mark_read}";
// -->
</script>
</head>
<body>
{$header}
{$forums}
{$boardstats}


<br style="clear: both" />
{$footer}
</body>
</html>
Jesam, eso que tu me dices lo que causa es que elimino los 3, y yo quiero moverlos no eliminarlos .
Bueno hay te Explico:

1ero: Vas a la Plantilla index_boardstats

Buscas este Codigo:
Código:
<td class="thead">

Reemplazas por este:
Código:
<td colspan="2" class="thead">

Buscas este otro en esa misma plantilla:
Código:
<td class="tfoot" style="text-align: right">

Y lo Reemplazas por Esto:
Código:
<td colspan="2" class="tfoot" style="text-align: right">

-------------------------------------------------------------------

2do: Vamos a la Plantilla index_stats

Buscamos este codigo:
Código:
<tr><td class="tcat"><span class="smalltext"><strong>{$lang->boardstats}</strong></span></td></tr>

Reemplazamos por este:
Código:
<tr><td colspan="2" class="tcat"><span class="smalltext"><strong>{$lang->boardstats}</strong></span></td></tr>

Ahora vamos Agregar los Iconos de Off, On, OffLock...

En esa misma plantilla buscamos este codigo:
Código:
<td class="trow1"><span class="smalltext">
{$lang->stats_posts_threads}<br />
{$lang->stats_numusers}<br />
{$lang->stats_newestuser}<br />
{$lang->stats_mostonline}
</span>
</td>

Y Añadimos despues el siguiente:
Código:
<td width="250" valign="middle" class="trow1">
<span class="smalltext">
<img src="{$theme['imgdir']}/on.gif" alt="" title="" style="vertical-align: middle; padding-bottom: 4px;" /> Foro que contiene mensajes nuevos <br />
<img src="{$theme['imgdir']}/off.gif" alt="" title="" style="vertical-align: middle; padding-bottom: 4px;" /> Foro que no contiene mensajes nuevos<br />
<img src="{$theme['imgdir']}/offlock.gif" alt="" title="" style="vertical-align: middle;" /> Foro cerrado
</span>
</td>

------------------------------------------------------------------------------------

3ra: Y ultima vamos a la plantilla Vamos a la Plantilla index_whosonline

Y reemplazamos todo por el Siguiente Codigo:
Código:
<tr>
<td colspan="2" class="tcat"><span class="smalltext"><strong>{$lang->whos_online}</strong> [<a href="online.php">{$lang->complete_list}</a>]</span></td>
</tr>
<tr>
<td colspan="2" class="trow1"><span class="smalltext">{$lang->online_note}<br />{$onlinemembers}</span></td>
</tr>


Podria haberte dicho reemplaza todo por esto.... Pero hay muchos que editan esas Plantillas para Agregarle Cualquier Cosita.... Espero haberte ayudado....