The Arcive of vBulletin Modifications Site. |
|
Tournaments too wide for fixed width forums Details »»
|
|||||||||||||||||||||||||
The tournament listings and bracket displays are too wide for fixed-width forums. See http://pinataisland.info/forum/arcad...iewtournaments
The "Tournaments waiting for players" as well as the "Tournament Ladder View" both spill out of the normal page. Show Your Support
|
|||||||||||||||||||||||||
| Comments |
|
#2
|
|||
|
|||
|
I've updated my arcade so guests can now view it.
|
|
#3
|
|||
|
|||
|
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: HTML Code:
<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: HTML Code:
<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> |
![]() |
|
|