Freesteyelz
01-11-2008, 10:53 AM
There's an opening <td> tag when there should be a <div> tag. If not fixed the footer will be be messed up when viewing "Your Favorites".
In /arcade/skin/skin_v3Arcade find:
function favorites($game_list) {
global $ibforums;
return <<<EOF
<td class="tborder">
<table cellpadding="3" cellspacing="1" border="0" width="100%">
<tr>
<td class="thead" colspan="4" align="center">{$ibforums->lang['my_favs']}</td>
</tr>
{$game_list}
</table>
</div><br />
EOF;
}
And replace it with:
function favorites($game_list) {
global $ibforums;
return <<<EOF
<div class="tborder">
<table cellpadding="3" cellspacing="1" border="0" width="100%">
<tr>
<td class="thead" colspan="4" align="center">{$ibforums->lang['my_favs']}</td>
</tr>
{$game_list}
</table>
</div><br />
EOF;
}
In /arcade/skin/skin_v3Arcade find:
function favorites($game_list) {
global $ibforums;
return <<<EOF
<td class="tborder">
<table cellpadding="3" cellspacing="1" border="0" width="100%">
<tr>
<td class="thead" colspan="4" align="center">{$ibforums->lang['my_favs']}</td>
</tr>
{$game_list}
</table>
</div><br />
EOF;
}
And replace it with:
function favorites($game_list) {
global $ibforums;
return <<<EOF
<div class="tborder">
<table cellpadding="3" cellspacing="1" border="0" width="100%">
<tr>
<td class="thead" colspan="4" align="center">{$ibforums->lang['my_favs']}</td>
</tr>
{$game_list}
</table>
</div><br />
EOF;
}