Salve raga!
Ieri sera ho fatto qualche prova per inserire un banner in SMF Arcade ma senza risultato (io e le tabelle non siamo mai andati d'accordo)
Questa la situazione "originale":
Questa invece quella che vorrei ottenere (realizzata alla rapida con software di ritocco):
Qui il codice interessato:
Codice PHP:
echo '
<div style="padding: 3px;">', theme_linktree(), '</div>';
if (!empty($context['arcade_tabs']))
{
echo '
<div class="tborder">
<table class="bordercolor" border="0" cellpadding="4" cellspacing="1" width="100%">
<tr class="titlebg">
<td colspan="2">
', $context['arcade_tabs']['title'], '
</td>
</tr>
', isset($context['arcade']['notice']) ? '
<tr class="windowbg2">
<td colspan="2">' . $context['arcade']['notice'] . '</td>
</tr>' : '', '
<tr class="catbg">
<td align="center">', $txt['arcade_game_highlights'], '</td>
<td align="center">', $txt['arcade_latest_scores'], '</td>
</tr>
<tr class="windowbg">
<td class="smalltext" style="padding: 2ex; text-align: center;">';
if ($context['arcade']['longest_champion'] !== false)
echo sprintf($txt['arcade_game_with_longest_champion'], $context['arcade']['longest_champion']['member_link'], $context['arcade']['longest_champion']['game_link']), '<br />';
if ($context['arcade']['most_played'] !== false)
echo sprintf($txt['arcade_game_most_played'], $context['arcade']['most_played']['link']), '<br />';
if ($context['arcade']['best_player'] !== false)
echo sprintf($txt['arcade_game_best_player'], $context['arcade']['best_player']['link']), '<br />';
if ($context['arcade']['stats']['games'] != 0)
echo sprintf($txt['arcade_game_we_have_games'], $context['arcade']['stats']['games']), '<br />';
echo '
</td>
<td class="smalltext" style="padding: 2ex; text-align: center;">';
if (count($context['arcade']['latest_scores']) > 0)
foreach ($context['arcade']['latest_scores'] as $score) // Print out latest scores
printf($txt['arcade_latest_score'], $scripturl . '?action=arcade;sa=play;game=' . $score['game_id'], $score['name'], $score['score'], $score['memberLink'], strip_tags($score['time']));
else
echo $txt['arcade_no_scores'];
echo '
</td>
</tr>
</table>
</div>
Questo il codice del banner (bottone) che dovrei inserire: Potete aiutarmi a rimediare?
Grazie anticipatamente, DarkWolf