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>
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.