wersja skryptu MyBB: 1.6.10
adres forum: www.killcompany.pl
na czym polega problem (screen, opis, komunikaty, nazwa stylu/theme/szablonu): Chcę zmienić horizontal line, która oddziela treść posta od sygnatury, lecz nie wiem gdzie ją zaleźć.
W poprzednim stylu edytowałem to w postbit_signature , lecz w aktualnym nie ma tam tej linii.
A patrzyłeś w postbit_classic?
W postbit_signature jest tylko ustawienie linii, a jak je usunę, to ona dalej jest.
Kod:
<hr size="1" width="25%" align="left" />
{$post['signature']}
W postbit_classic nie znalazłem żadnego hr
Pokaż swój postbit_classic
No, ale aby ją usunąć należy tak jak wcześniej napisałeś w postbit_signature usunąć
Kod:
<hr size="1" width="25%" align="left" />
Sprawdzałem, gdy tę część kodu usuniesz to linia się również kasuje.
więc zmieniamy to
Kod:
<hr size="1" width="25%" align="left" />
na to
Kod:
<hr size="1" width="25%" class="linia" align="left" />
i potem w css dodaje się klasę
Kod:
hr.linia {TUTAJ_ATRYBUTY}
(01.07.2013, 18:18)gibonpl napisał(a): [ -> ]Spróbuj tak:
Kod:
{$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="trowpost" width="15%" valign="top" style="white-space: nowrap; text-align: center;"><a name="pid{$post['pid']}" id="pid{$post['pid']}"></a>
<div class="profilpost">
<div id="profilpost2">
<div id="profilpost1">
<strong><span class="largetext"><big>{$post['profilelink']}</big
></span></strong><br />
</div></div>
<br>
<div id="profilpost4">
<div id="profilpost3">
{$post['usertitle']}<br />
{$post['userstars']}
</div></div>
<div id="profilpost6">
<div id="profilpost5">
<br>
{$post['groupimage']}
{$post['useravatar']}<br />
</div></div>
<div id="profilpost8">
<div id="profilpost7">
{$post['user_details']}
</div></div>
<br>
</div>
</td>
<td class="trowpost" 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']}" class="post_body">
{$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="trowpost" style="white-space: nowrap; text-align: center; vertical-align: middle;"><span class="smalltext">{$post['postdate']} {$post['posttime']}</span></td>
<td class="trowpost" style="vertical-align: middle;">
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr valign="bottom">
<td align="left" ><span class="smalltext"><a href="gg:{$post['sr_gadu']}"><object data="http://status.gadu-gadu.pl/users/status.asp?id={$post['sr_gadu']}&styl=0" type="image/png" width="20" height="20"><object data="./images/sr_plugins/plims/no_gadu.png" type="image/png" width="18" height="18"> </object></object></a>
<a href="http://ludzie.tlen.pl/{$post['sr_tlen']}/" target="_blank"><object data="http://status.tlen.pl/?u={$post['sr_tlen']}&t=1" type="image/gif" width="18" height="18"><object data="./images/sr_plugins/plims/no_tlen.png" type="image/png" width="18" height="18"> </object></object></a>
<a href="skype:{$post['sr_skype']}?chat"><object data="http://mystatus.skype.com/smallicon/{$post['sr_skype']}" type="image/png" width="18" height="18"><object data="./images/sr_plugins/plims/no_skype.png" type="image/png" width="16" height="16"> </object></object></a>
{$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>{$post['adsaf']}
Wszystko pięknie działa. Teraz mogę dowolnie edytować postbit_signature.
Dzięki wielkie i reputa leci.