Hi, I have made a sam broadcarter mod to show infromation from a live stream radio but I have problems with the template.

The footer appears displaced and the right shadow does not appear. :S

toma1

toma2


radio.tpl
Code: [Download] [Hide] [Select]
<!-- INCLUDE breadcrumbs.tpl -->
{IMG_THL}{IMG_THC}<span class="forumlink">Radio</span>{IMG_THR}
<table class="forumlinenb" width="100%" cellspacing="0" cellpadding="0">
<tr>
<th>Estado</th>
<th>Formato</th>
<th>Bitrate</th>
<th>Frecuencia</th>
<th>Escuchas</th>
</tr>
<tr>
<td><div class='row1' align='center'>{ENCODERS}</div></td>
<td class='row1'>{FORMAT}</td>
<td class='row1'>{BITRATE} Kbps</td>
<td class='row1'>{FREQUENCY} kHz</td>
<td class='row1'>{VIEWERS}/{VIEWERS_MAX}</td>
</tr>
</table>{IMG_TFL}{IMG_TFC}{IMG_TFR}

<br />

{IMG_THL}{IMG_THC}<span class="forumlink">Ultimos Temas</span>{IMG_THR}
<table class="forumlinenb" width="100%" cellspacing="0" cellpadding="0">

{HISTORY}
{IMG_TFL}{IMG_TFC}{IMG_TFR}
</table>


radio.php
Code: [Download] [Hide] [Select]
<?php
/***************************************************************************
* radio.php
***************************************************************************/

define('IN_PHPBB', true);
$phpbb_root_path = './';
include($phpbb_root_path . 'extension.inc');
include($phpbb_root_path . 'common.' . $phpEx);

// Start session management
$userdata = defined('IS_ICYPHOENIX') ? session_pagestart($user_ip) : session_pagestart($user_ip, PAGE_ALBUM);
init_userprefs($userdata);
// End session management

/*
+----------------------------------------------------------
| Start output the page
+----------------------------------------------------------
*/

//$page_title = $lang['Album'];
$meta_description = $lang['Radio'];
$meta_keywords = $lang['Radio'];

if ($album_user_id == ALBUM_PUBLIC_GALLERY)
{
if( empty($moderators_list) )
{
$moderators_list = $lang['None'];
}

include($phpbb_root_path . 'includes/page_header.' . $phpEx);
include ($phpbb_root_path . 'radio_info.' . $phpEx);

$template->set_filenames(array('body' => 'radio_history.tpl'));

$template->assign_vars(array(
'HISTORY' => $history,
'ENCODERS' => $encoders_started,
'FORMAT' => $relays_format,
'BITRATE' => $relays_bitrate,
'VIEWERS' => $relays_viewers,
'VIEWERS_MAX' => $relays_viewes_max)
);
}
else
{
}

// Generate the page
$template->pparse('body');


include($phpbb_root_path . 'includes/page_tail.' . $phpEx);

?>


Anyone can help me?