[Error]  Uso Posbit y Termina Mal?
* URL del foro: 12niveles.com * Versión del foro: 1.6 * Actualización: no Bueno mi duda es la sgte eh usado el tutorial de poner el postbit ese pa...

  • URL del foro: 12niveles.com
  • Versión del foro: 1.6
  • Actualización: no

Bueno mi duda es la sgte eh usado el tutorial de poner el postbit ese para las celdas todo lo coloco pero cuando mira como queda .

Queda Asi una imagen
[Imagen: 70410728.jpg]
broth y la imagen de el avatar ahi esta el error que te digo

broth ya lo cambie a 16 y sigue igual !:S
Última modificación: 15 Dec, 2010, 10:47 am por denizreyes.
Mira, en el global.css, debes haber agregado el ".trow4", ahi debe decir también un porcentaje, cambialo a 16%, respecto al avatar debes pasarme la plantilla postbit_classic
broth ya lo cambie a 16% y sigue igual este codigo edite

.trow4 {
background: #fcfcfc;
width: 16%;
border: 1px solid #a1c9d8;
font-weight:bold;
padding: 2px;
font-size: 11px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
}
has lo siguiente, de la plantilla postbit_author_user, borra todos los "<tr> y </tr> que hayas puesto, y cambia todos los lugares donde dice <td class="trow4"... por <div class="trow4"..
<table width="16%" border="0" cellspacing="2" cellpadding="1" style="font-
size:12px">
<tr><div class="trow4" align="center">
{$lang->postbit_posts} {$post['postnum']}<br />
</td>

<tr><div class="trow4" align="center">
{$lang->postbit_joined} {$post['userregdate']}
</td>

<tr><div class="trow4" align="center">
{$post['replink']}{$post['warninglevel']}
</td>

asi queda men mira la imagen
[Imagen: 66360679.jpg]
Pon toda tu plantilla postbit_classic y toda la postbit_author_user. Y al trow4 déjalo así:

Código:
.trow4 {
background: #fcfcfc;
border: 1px solid #a1c9d8;
font-weight:bold;
padding: 2px;
font-size: 11px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
}
(15 Dec, 2010, 11:06 am)fixeado escribió: <table width="16%" border="0" cellspacing="2" cellpadding="1" style="font-
size:12px">
<tr><div class="trow4" align="center">
{$lang->postbit_posts} {$post['postnum']}<br />
</td>

<tr><div class="trow4" align="center">
{$lang->postbit_joined} {$post['userregdate']}
</td>

<tr><div class="trow4" align="center">
{$post['replink']}{$post['warninglevel']}
</td>
Te falta borrar los <tr> y cambiar los </td> por </div>...

postbit_author_user

<table width="16%" border="0" cellspacing="2" cellpadding="1" style="font-
size:12px">
<div class="trow4" align="center">
{$lang->postbit_posts} {$post['postnum']}<br />
</div>

<div class="trow4" align="center">
{$lang->postbit_joined} {$post['userregdate']}
</div>

<div class="trow4" align="center">
{$post['replink']}{$post['warninglevel']}
</div>


Posbit_Clasic


{$ignore_bit}
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder" style="{$post_extra_style} {$post_visibility}" id="post_{$post['pid']}">
<tr>
<td class="{$altbg}" width="15%" valign="top" style="white-space: nowrap; text-align: center;"><a name="pid{$post['pid']}" id="pid{$post['pid']}"></a>
<strong><span class="largetext">{$post['profilelink']}</span></strong> {$post['onlinestatus']}<br />
<span class="smalltext">
{$post['usertitle']}<br />
{$post['userstars']}
{$post['groupimage']}
{$post['useravatar']}<br />
{$post['user_details']}
</span>
</td>
<td class="{$altbg}" valign="top">
<table width="100%">
<tr><td>{$post['posturl']}<span class="smalltext"><strong>{$post['icon']}{$post['subject']} {$post['subject_extra']}</strong></span>
<br />
<div id="pid_{$post['pid']}" style="padding: 5px 0 5px 0;">
{$post['message']}
</div>
{$post['attachments']}
{$post['signature']}
<div style="text-align: right; vertical-align: bottom;" id="post_meta_{$post['pid']}">
<div id="edited_by_{$post['pid']}">{$post['editedmsg']}</div>
{$post['iplogged']}
</div>
</td></tr>
</table>
</td>
</tr>
<tr>
<td class="{$altbg}" style="white-space: nowrap; text-align: center; vertical-align: middle;"><span class="smalltext">{$post['postdate']} {$post['posttime']}</span></td>
<td class="{$altbg}" style="vertical-align: middle;">
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr valign="bottom">
<td align="left" ><span class="smalltext">{$post['button_email']}{$post['button_pm']}{$post['button_www']}{$post['button_find']}{$post['button_rep']}</span></td>
<td align="right">{$post['button_edit']}{$post['button_quickdelete']}{$post['button_quote']}{$post['button_multiquote']}{$post['button_report']}{$post['button_warn']}{$post['button_reply_pm']}{$post['button_replyall_pm']}{$post['button_forward_pm']}{$post['button_delete_pm']}</td>
</tr>
</table>
</td>
</tr>
</table>
Última modificación: 15 Dec, 2010, 12:08 pm por denizreyes.