The Arcive of vBulletin Modifications Site. |
|
skin_v3Arcade: Favorites Template Fix Details »»
|
|||||||||||||||||||||||||
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: Code:
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: Code:
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;
}
Show Your Support
|
|||||||||||||||||||||||||
| Comments |
|
#2
|
|||
|
|||
|
Is this for v3Arcade or IBProArcade?
|
|
#3
|
||||
|
||||
|
Its for ibproarcade....
You have two skin to choose from in ibproarcade....ibproarcade style or v3 style.. |
|
#4
|
||||
|
||||
|
already implemented in upcoming v2.6.6+
![]() Thanks! |
![]() |
|
|