wersja skryptu MyBB: 1.6.x
adres forum: letshoot.pl
na czym polega problem (screen, opis, komunikaty, nazwa stylu/theme/szablonu): Tak, więc w moim stylu wchodzi ikonka postu na obramowanie, dokładnie jest to w dziale w podglądzie działu. Gdzie mogę to edytować i gdzię mogę do tego dodać obramowanie ?
pokaż szablon forumdiplsay_thread (ACP -> Style i Szablony -> Szablony -> Twój_Szablon -> Widok działu).
Kod PHP:
<tr class="threadlist_row">
<td align="center" class="{$bgcolor}{$thread_type_class}" width="2%"><img src="{$theme['imgdir']}/{$folder}.gif" alt="{$folder_label}" title="{$folder_label}" /></td>
<td align="center" class="{$bgcolor}{$thread_type_class}" width="2%">{$icon}</td>
<td class="{$bgcolor}{$thread_type_class}">
{$prefix}{$attachment_count}
<div>
<span> {$gotounread}{$thread['threadprefix']}<a href="{$thread['threadlink']}" class="{$inline_edit_class} {$new_class}" id="tid_{$inline_edit_tid}">{$thread['subject']}</a>{$thread['multipage']}</span>
<div class="author smalltext">Napisane przez <b>{$thread['profilelink']}</b></div>
</div>
</td>
{$rating}
<td align="center" class="{$bgcolor}{$thread_type_class}"><div class="threadlist_postviewcount"><a href="javascript:MyBB.whoPosted({$thread['tid']});">{$thread['replies']}</a>{$unapproved_posts} Replies <br /> {$thread['views']} Views</div></td>
<td class="{$bgcolor}{$thread_type_class}" style="white-space: nowrap; text-align: left;width:20%;">
<span class="lastpost smalltext">{$thread['lastposteravatar']}<a href="{$thread['lastpostlink']}">{$lang->lastpost}</a> by {$lastposterlink}<br /> {$lastpostdate} {$lastposttime}</span>
</td>
{$modbit}
</tr>
Zamień:
Kod:
<tr class="threadlist_row">
<td align="center" class="{$bgcolor}{$thread_type_class}" width="4%"><img src="{$theme['imgdir']}/{$folder}.gif" alt="{$folder_label}" title="{$folder_label}" /></td>
<td align="center" class="{$bgcolor}{$thread_type_class}" width="2%">{$icon}</td>
<td class="{$bgcolor}{$thread_type_class}">
{$prefix}{$attachment_count}
<div>
<span> {$gotounread}{$thread['threadprefix']}<a href="{$thread['threadlink']}" class="{$inline_edit_class} {$new_class}" id="tid_{$inline_edit_tid}">{$thread['subject']}</a>{$thread['multipage']}</span>
<div class="author smalltext">Napisane przez <b>{$thread['profilelink']}</b></div>
</div>
</td>
{$rating}
<td align="center" class="{$bgcolor}{$thread_type_class}"><div class="threadlist_postviewcount"><a href="javascript:MyBB.whoPosted({$thread['tid']});">{$thread['replies']}</a>{$unapproved_posts} Replies <br /> {$thread['views']} Views</div></td>
<td class="{$bgcolor}{$thread_type_class}" style="white-space: nowrap; text-align: left;width:20%;">
<span class="lastpost smalltext">{$thread['lastposteravatar']}<a href="{$thread['lastpostlink']}">{$lang->lastpost}</a> by {$lastposterlink}<br /> {$lastpostdate} {$lastposttime}</span>
</td>
{$modbit}
</tr>
Wielkie dzięki kolego. Tylko jeszcze gdzie mogę dodać obramowanie do tego ?
W sensie po prawej zrobić obramowanie?? Jeśli tak to znajdź:
Kod:
<td align="center" class="{$bgcolor}{$thread_type_class}" width="4%"><img src="{$theme['imgdir']}/{$folder}.gif" alt="{$folder_label}" title="{$folder_label}" /></td>
I zamień na:
Kod:
<td align="center" class="{$bgcolor}{$thread_type_class}" width="4%" style="border-right:#fff;"><img src="{$theme['imgdir']}/{$folder}.gif" alt="{$folder_label}" title="{$folder_label}" /></td>
W sensie wokół całego ;D Czyli po bokach i na dole.
no to atrybut "border" przykładowo:
Kod:
<td align="center" class="{$bgcolor}{$thread_type_class}" width="4%" style="border: 1px solid #fff;"><img src="{$theme['imgdir']}/{$folder}.gif" alt="{$folder_label}" title="{$folder_label}" /></td>
Tak dobrze, tylko że ty mi dałeś obramowanie do ikonki, a ja chcę aby to było wokół tabelki.
Odświeżam
Poradziłem sobie. Do zamknięcia.