wersja skryptu MyBB: 1.6.9
adres forum: insidery.cba.pl
na czym polega problem (screen, opis, komunikaty, nazwa stylu/theme/szablonu):
Ja stronie głównej mam Kategorię a w niej działy. Jak mogę zmienić szerokość poszczególnych kolumn? Chodzi mi tutaj o:
Dział, Wątków, Postów, Ostatni post
Głównie chodzi mi o ostatni post, bo zainstalowałem plugin Avatary przy ostatnich postach:
https://webboard.pl/thread-23909.html
i tekst tematu wyjeżdża mi o 4 znaki poza krawędź Kategorii.
W chwili obecnej plugin jest wyłączony.
Edytuje się to w szablony ~> opis działu ~> forumbit_depth2_forum.
Edytujesz albo dodajesz do znacznika <td>
Kod:
style="width: ileśpx;"
Mam takie coś:
Kod:
<td class="{$bgcolor}" valign="top" align="right" style="white-space: nowrap">{$lastpost}</td>
i gdzie dodać albo gdzie edytować to co podałeś?
OK, a to samo po wejściu w dział? Tam gdzie lista wątków.
Szablony ~> widok działu ~> forumdisplay_thread_rating ~> dodaj tak jak pokazywałem.
forumdisplay_thread_rating
Kod:
<td align="center" class="{$bgcolor}{$thread_type_class}" id="rating_table_{$thread['tid']}">
<ul class="star_rating{$not_rated}" id="rating_thread_{$thread['tid']}">
<li style="width: {$thread['width']}%" class="current_rating" id="current_rating_{$thread['tid']}">{$ratingvotesav}</li>
</ul>
<script type="text/javascript">
<!--
Rating.build_forumdisplay({$thread['tid']}, { width: '{$thread['width']}', extra_class: '{$not_rated}', current_average: '{$ratingvotesav}' });
// -->
</script>
</td>
Pokaż proszę gdzie dać
Troszkę sobie jeszcze nie radzę, ale staram się
Znowu się palnąłem i podałem nie ten szablon co trzeba...
Pokaż forumdisplay_thread
Kod:
<tr>
<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}">
{$attachment_count}
<div>
<span>{$prefix} {$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">{$thread['profilelink']} {$thread_date}</div>
</div>
</td>
<td align="center" class="{$bgcolor}{$thread_type_class}"><a href="javascript:MyBB.whoPosted({$thread['tid']});">{$thread['replies']}</a>{$unapproved_posts}</td>
<td align="center" class="{$bgcolor}{$thread_type_class}">{$thread['views']}</td>
{$rating}
<td class="{$bgcolor}{$thread_type_class}" style="white-space: nowrap; text-align: right;width: 100px;">
<span class="lastpost smalltext">{$thread['lastposteravatar']}{$lastpostdate} {$lastposttime}<br />
<a href="{$thread['lastpostlink']}">{$lang->lastpost}</a>: {$lastposterlink}</span>
</td>
{$modbit}
</tr>
Praktycznie przed końcem kodu (4 linijka od dołu) dodałem width
Kod:
<td class="{$bgcolor}{$thread_type_class}" style="white-space: nowrap; text-align: right;width: 100px;">
Nic to nie daje
Kod:
<tr>
<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}">
{$attachment_count}
<div>
<span>{$prefix} {$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">{$thread['profilelink']} {$thread_date}</div>
</div>
</td>
<td align="center" class="{$bgcolor}{$thread_type_class}"><a href="javascript:MyBB.whoPosted({$thread['tid']});">{$thread['replies']}</a>{$unapproved_posts}</td>
<td align="center" class="{$bgcolor}{$thread_type_class}">{$thread['views']}</td>
{$rating}
<td class="{$bgcolor}{$thread_type_class}" style="white-space: nowrap; text-align: right; width: 250px;">
<span class="lastpost smalltext">{$thread['lastposteravatar']}{$lastpostdate} {$lastposttime}<br />
<a href="{$thread['lastpostlink']}">{$lang->lastpost}</a>: {$lastposterlink}</span>
</td>
{$modbit}
</tr>
Już sobie poradziłem. Wyłączyłem wyświetlanie w działach po prostu a można zmienić procentowo w forumdisplay_threadlist, choć do konca z tego zadowolony nie byłem.