wersja skryptu MyBB: Najnowsza
adres forum: WSCgang.ct8.pl
na czym polega problem (screen, opis, komunikaty, nazwa stylu/theme/szablonu):
A więc.. jak zauważycie na forum, stronie głównej, to zobaczycie że nie równo wyświetla się "Tematy" i "Posty' w jednej kategorii równo, a w nastepnej w innym miejscu jest. Moje pytanie, jak zrobić by to było równo w każdych kategoriach ? ;x Z góry dzięki za odpowiedź, pare kodów dla ułatwienia:
forumbit_depth1_forum_lastpost
Kod:
<span class="smalltext">
<a href="{$lastpost_link}" title="{$full_lastpost_subject}"><strong>{$lastpost_subject}</strong></a>
<br />{$lastpost_date} {$lastpost_time}<br />{$lang->by} {$lastpost_profilelink}</span>
forumbit_depth2_forum_lastpost
Kod:
<span class="smalltext">
<a href="{$lastpost_link}" title="{$full_lastpost_subject}"><strong>{$lastpost_subject}</strong></a> {$lang->by} {$lastpost_profilelink}<br />
{$lastpost_date} - {$lastpost_time}</span>
W szablonach:
- forumbit_depth2_forum
- forumbit_depth2_cat
zdefiniuj szerokości (width) poszczególnych komórek tabel (td).
Tak troszk się nie znam :/ Mógłbyś mi dodac ten kodzik, albo tak naprowadzić bo ja nie ogarniam zbytnio
forumbit_depth2_forum
Kod:
<tr>
<td class="{$bgcolor}" align="center" valign="top" width="1"><img src="{$theme['imgdir']}/{$lightbulb['folder']}.png" alt="{$lightbulb['altonoff']}" title="{$lightbulb['altonoff']}" class="ajax_mark_read onoff" id="mark_read_{$forum['fid']}" /></td>
<td class="{$bgcolor}" valign="top">
<strong><a href="{$forum_url}">{$forum['name']}</a></strong>{$forum_viewers_text}<div class="smalltext">{$forum['description']}{$modlist}{$subforums}</div>
</td>
<td class="{$bgcolor} smalltext" valign="top" align="right" style="white-space: nowrap">Tematy: {$threads}{$unapproved['unapproved_threads']}<br />Posty: {$posts}{$unapproved['unapproved_posts']}</td>
<td class="{$bgcolor}" valign="top" align="center" style="white-space: nowrap"></td>
<td class="{$bgcolor}" valign="top" align="left" style="white-space: nowrap">{$lastpost}</td>
</tr>
forumbit_depth2_cat
Kod:
<tr>
<td class="{$bgcolor}" align="center" valign="top" width="1"><img src="{$theme['imgdir']}/{$lightbulb['folder']}.gif" alt="{$lightbulb['altonoff']}" title="{$lightbulb['altonoff']}" class="ajax_mark_read" id="mark_read_{$forum['fid']}" /></td>
<td class="{$bgcolor}" valign="top">
<strong><a href="{$forum_url}">{$forum['name']}</a></strong>{$forum_viewers_text}<div class="smalltext">{$forum['description']}{$subforums}</div>
</td>
<td class="{$bgcolor}" valign="top" align="center" style="white-space: nowrap">{$threads}{$unapproved['unapproved_threads']}</td>
<td class="{$bgcolor}" valign="top" align="center" style="white-space: nowrap">{$posts}{$unapproved['unapproved_posts']}</td>
<td class="{$bgcolor}" valign="top" align="right" style="white-space: nowrap">{$lastpost}</td>
</tr>
Prawie dobrze, 3 kategoria wyświetla się trochę inaczej :/ Da się coś z tym zrobić?
Jeszcze to: forumbit_depth2_cat
Kod PHP:
<tr>
<td class="{$bgcolor}" align="center" valign="top" width="1"><img src="{$theme['imgdir']}/{$lightbulb['folder']}.gif" alt="{$lightbulb['altonoff']}" title="{$lightbulb['altonoff']}" class="ajax_mark_read" id="mark_read_{$forum['fid']}" /></td>
<td class="{$bgcolor}" valign="top">
<strong><a href="{$forum_url}">{$forum['name']}</a></strong>{$forum_viewers_text}<div class="smalltext">{$forum['description']}{$subforums}</div>
</td>
<td class="{$bgcolor}" valign="top" align="center" style="white-space: nowrap">{$threads}{$unapproved['unapproved_threads']}</td>
<td class="{$bgcolor}" valign="top" align="center" style="white-space: nowrap">{$posts}{$unapproved['unapproved_posts']}</td>
<td class="{$bgcolor}" valign="top" align="right" style="white-space: nowrap; width: 200px;">{$lastpost}</td>
</tr>
ewentualnie w obu szablonach pobaw się width: 200px.
No nie działa, bawię się z 200px ale no lipa, rozsuwa się lekko niż zwęża nawet jak zwiększe czy zmniejsze :?
3 kategoria nadal się rozsuowa i choć bym w cat wpisywał 300 to i tak nic
Nie wiem dlaczego tak jest, spróbuj jeszcze tak:
forumbit_depth2_forum:
Kod PHP:
<tr>
<td class="{$bgcolor}" align="center" valign="top" width="1"><img src="{$theme['imgdir']}/{$lightbulb['folder']}.png" alt="{$lightbulb['altonoff']}" title="{$lightbulb['altonoff']}" class="ajax_mark_read onoff" id="mark_read_{$forum['fid']}" /></td>
<td class="{$bgcolor}" valign="top">
<strong><a href="{$forum_url}">{$forum['name']}</a></strong>{$forum_viewers_text}<div class="smalltext">{$forum['description']}{$modlist}{$subforums}</div>
</td>
<td class="{$bgcolor} smalltext" valign="top" align="right" style="white-space: nowrap; width: 100px;">Tematy: {$threads}{$unapproved['unapproved_threads']}<br />Posty: {$posts}{$unapproved['unapproved_posts']}</td>
<td class="{$bgcolor}" valign="top" align="center" style="white-space: nowrap"></td>
<td class="{$bgcolor}" valign="top" align="left" style="white-space: nowrap; width: 200px;">{$lastpost}</td>
</tr>