Webboard

Pełna wersja: Opis działów, przeniesienie go do tabeli, zamiast oddzielnego diva
Aktualnie przeglądasz uproszczoną wersję forum. Kliknij tutaj, by zobaczyć wersję z pełnym formatowaniem.
wersja skryptu MyBB:1.6.8
adres forum:www.glow-shot.xaa.pl
na czym polega problem (screen, opis, komunikaty, nazwa stylu/theme/szablonu): Problem polega na tym że opisy działów czyli po najechaniu kursorem na for np. Regulaminy się pokazują dopiero a chciałbym aby się odrazu pokazywały:

JEst tak:
http://img7.imageshack.us/img7/9170/takin.jpg

A chciałbym aby opis był odrazu pod "Regulaminy" bez najezdzania.
Hmm... podaj zawartość szablonów forumbit_depth2_cat i forumbit_depth2_forum.
forumbit_depth2_cat
Kod:
<tr>
<td class="{$bgcolor}" align="center" valign="middle" width="1"><img src="{$theme['imgdir']}/{$lightbulb['folder']}.gif" alt="{$lightbulb['altonoff']}" title="{$lightbulb['altonoff']}" class="ajax_mark_read tooltip" id="mark_read_{$forum['fid']}" /></td>
<td class="{$bgcolor}" valign="middle">
<h2><a class="tooltip" href="{$forum_url}" title="{$forum['description']}">{$forum['name']}</a></h2><h3>{$subforums}</h3>
</td>
<td class="{$bgcolor}" valign="middle" align="right" style="white-space: nowrap; padding-right: 20px;" width="130px">{$threads}{$unapproved['unapproved_threads']} threads<br />{$posts}{$unapproved['unapproved_posts']} posts</td>
<td class="{$bgcolor}" valign="middle" align="left" style="white-space: nowrap" width="250px">{$lastpost}</td>
</tr>

forumbit_depth2_forum
Kod:
<tr>
<td class="{$bgcolor}" align="center" valign="middle" width="1"><img src="{$theme['imgdir']}/{$lightbulb['folder']}.gif" alt="{$lightbulb['altonoff']}" title="{$lightbulb['altonoff']}" class="ajax_mark_read tooltip" id="mark_read_{$forum['fid']}" /></td>
<td class="{$bgcolor}" valign="middle">
<h2><a class="tooltip" href="{$forum_url}" title="{$forum['description']}">{$forum['name']}</a></h2><h3>{$subforums}</h3>
</td>
<td class="{$bgcolor}" valign="middle" align="right" style="white-space: nowrap; padding-right: 20px;" width="130px">{$threads}{$unapproved['unapproved_threads']} threads<br />{$posts}{$unapproved['unapproved_posts']} posts</td>
<td class="{$bgcolor}" valign="middle" align="left" style="white-space: nowrap" width="250px">{$lastpost}</td>
</tr>
Chyba powinno być tak:

forumbit_depth2_cat
Kod:
<tr>
<td class="{$bgcolor}" align="center" valign="middle" width="1"><img src="{$theme['imgdir']}/{$lightbulb['folder']}.gif" alt="{$lightbulb['altonoff']}" title="{$lightbulb['altonoff']}" class="ajax_mark_read tooltip" id="mark_read_{$forum['fid']}" /></td>
<td class="{$bgcolor}" valign="middle">
<h2><a class="tooltip" href="{$forum_url}">{$forum['name']}</a></h2>
<br />{$forum['description']}
<h3>{$subforums}</h3>
</td>
<td class="{$bgcolor}" valign="middle" align="right" style="white-space: nowrap; padding-right: 20px;" width="130px">{$threads}{$unapproved['unapproved_threads']} threads<br />{$posts}{$unapproved['unapproved_posts']} posts</td>
<td class="{$bgcolor}" valign="middle" align="left" style="white-space: nowrap" width="250px">{$lastpost}</td>
</tr>

forumbit_depth2_forum
Kod:
<tr>
<td class="{$bgcolor}" align="center" valign="middle" width="1"><img src="{$theme['imgdir']}/{$lightbulb['folder']}.gif" alt="{$lightbulb['altonoff']}" title="{$lightbulb['altonoff']}" class="ajax_mark_read tooltip" id="mark_read_{$forum['fid']}" /></td>
<td class="{$bgcolor}" valign="middle">
<h2><a class="tooltip" href="{$forum_url}">{$forum['name']}</a></h2>
<br />{$forum['description']}
<h3>{$subforums}</h3>
</td>
<td class="{$bgcolor}" valign="middle" align="right" style="white-space: nowrap; padding-right: 20px;" width="130px">{$threads}{$unapproved['unapproved_threads']} threads<br />{$posts}{$unapproved['unapproved_posts']} posts</td>
<td class="{$bgcolor}" valign="middle" align="left" style="white-space: nowrap" width="250px">{$lastpost}</td>
</tr>
Dziękuję Bardzo pomogło! :))