View Full Version : Tournaments too wide for fixed width forums
jimmcq
04-16-2007, 11:21 PM
The tournament listings and bracket displays are too wide for fixed-width forums. See http://pinataisland.info/forum/arcade.php?&do=viewtournaments
The "Tournaments waiting for players" as well as the "Tournament Ladder View" both spill out of the normal page.
jimmcq
04-20-2007, 06:15 AM
I've updated my arcade so guests can now view it.
This is the third or fourth thread I have seen so far asking about this issue, with no answer. Does anyone know how to get rid of the "nowrap" statement so that the tables will adjust?
If I find the answer I will post it up for the rest of you all.
Here is the answer: inside of arcade/skins update the skin files.
I have two skin files, skin_Arcade.php and skin_v3Arcade.php, so here is what I updated:
find:
<td align='center' nowrap='nowrap' class='alt1'>{$rowinfo['link']}</td>
<td align='center' nowrap='nowrap' class='alt1'><a href='{$ibforums->base_url}act=Arcade&do=play&gameid={$rowinfo[gid]}'>{$rowinfo['gtitle']}</a> {$ibforums->lang['tournament']}</td>
<td align='center' nowrap='nowrap' class='alt1'>{$rowinfo['numplayers']}</td>
<td align='center' nowrap='nowrap' class='alt1'>{$rowinfo['plibre']}</td>
<td align='center' nowrap='nowrap' class='alt1'>{$rowinfo['nbtries']}</td>
<td align='center' nowrap='nowrap' class='alt1'>{$rowinfo['inscrire']}</td>
<td align='center' nowrap='nowrap' class='alt1'>{$rowinfo['datestarted']}</td>
<td align='center' nowrap='nowrap' class='alt1'>{$rowinfo['creat']}</td>
replace with:
<td align='center' class='alt1'>{$rowinfo['link']}</td>
<td align='center' class='alt1'><a href='{$ibforums->base_url}act=Arcade&do=play&gameid={$rowinfo[gid]}'>{$rowinfo['gtitle']}</a> {$ibforums->lang['tournament']}</td>
<td align='center' class='alt1'>{$rowinfo['numplayers']}</td>
<td align='center' class='alt1'>{$rowinfo['plibre']}</td>
<td align='center' class='alt1'>{$rowinfo['nbtries']}</td>
<td align='center' class='alt1'>{$rowinfo['inscrire']}</td>
<td align='center' class='alt1'>{$rowinfo['datestarted']}</td>
<td align='center' class='alt1'>{$rowinfo['creat']}</td>
Almost forgot, there are also nowrap statements above that can be edited to suit your needs. You get the idea, though. I can post up more if needed.
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.