Log in

View Full Version : skin_v3Arcade: Favorites Template Fix


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;
}

Marco van Herwaarden
01-14-2008, 08:01 AM
Is this for v3Arcade or IBProArcade?

stangger5
01-14-2008, 09:58 AM
Is this for v3Arcade or IBProArcade?

Its for ibproarcade....
You have two skin to choose from in ibproarcade....ibproarcade style or v3 style..

MrZeropage
01-15-2008, 06:13 PM
already implemented in upcoming v2.6.6+ :)

Thanks!