Verfasst: 11.04.2006 13:27

phpBB.de - Die deutsche phpBB-Community
https://www.phpbb.de/community/
Code: Alles auswählen
<!-- Start add - Fully integrated shoutbox MOD -->
<table width="100%" border="0" align="left" class="forumline">
Code: Alles auswählen
<!-- Start add - Fully integrated shoutbox MOD -->
<table width="100%" height="{GRÖSSE}" border="0" align="left" class="forumline">
Code: Alles auswählen
<!-- BEGIN amp_main -->
<table width="100%" border="0" align="right" class="forumline">
Code: Alles auswählen
<!-- BEGIN amp_main -->
<table width="100%" height="{GRÖSSE}" border="0" align="right" class="forumline">
Code: Alles auswählen
<!-- BEGIN amp_game_rows -->
<tr>
Code: Alles auswählen
<!-- BEGIN amp_game_rows -->
<tr height="20%">
Code: Alles auswählen
<!-- BEGIN amp_user_rows -->
<tr>
Code: Alles auswählen
<!-- BEGIN amp_user_rows -->
<tr height="20%">
Code: Alles auswählen
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td width="50%" valign="top">
<!-- Start add - Fully integrated shoutbox MOD -->
<table width="100%" height="370" border="0" align="left" class="forumline">
<tr>
<td align="center" nowrap="nowrap" class="catHead"><span class="cattitle"><a href="{U_SHOUTBOX_MAX}">{L_SHOUTBOX}</a></span></td>
</tr>
<tr>
<td><iframe src="{U_SHOUTBOX}" scrolling="NO" width="100%" height="233" frameborder="0" marginheight="0" marginwidth="0" allowtransparency="true"></iframe></td>
</tr>
</table>
<!-- End add - Fully integrated shoutbox MOD -->
</td>
<td width="5"> </td>
<td width="50%" valign="top">
<!-- BEGIN amp_main -->
<table width="100%" height="370" border="0" align="right" class="forumline">
<tr>
<td class="catHead" align="center" colspan="2">
<span class="cattitle">
{amp_main.TITLE}
</span>
</td>
</tr>
<tr>
<td width="50%" class="row1">
<table border="0" align="center" width="100%">
<tr>
<td class="catHead" align="center" width="45%" colspan="3">
<span class="cattitle">
{amp_main.LEFT}
</span>
</td>
</tr>
<!-- END amp_main -->
<!-- BEGIN amp_game_rows -->
<tr height="20%">
<td class="row2" align="center" width="33%">
{amp_game_rows.POS}
</td>
<td class="row2" align="center" width="33%">
{amp_game_rows.GAME}
</td>
<td class="row2" align="center" width="33%">
{amp_game_rows.LINK}
</td>
</tr>
<!-- END amp_game_rows -->
<!-- BEGIN amp_main -->
</table>
</td>
<td width="50%" class="row1">
<table border="0" align="center" width="100%">
<tr>
<td class="catHead" align="center" width="45%" colspan="3">
<span class="cattitle">
{amp_main.RIGHT}
</span>
</td>
</tr>
<!-- END amp_main -->
<!-- BEGIN amp_user_rows -->
<tr height="20%">
<td class="row2" align="center" width="33%">
{amp_user_rows.POS}
</td>
<td class="row2" align="center" width="33%">
{amp_user_rows.WHO}
</td>
<td class="row2" align="center" width="33%">
{amp_user_rows.LINK}
</td>
</tr>
<!-- END amp_user_rows -->
<!-- BEGIN amp_main -->
</table>
</td>
</tr>
</table>
<!-- END amp_main -->
</td>
</tr>
</table>
Code: Alles auswählen
/* Main table cell colours and backgrounds */
td.row1 { background-color: #C7E0FF; }
td.row2 { background-color: #99CCFF; }
td.row3 { background-color: #C7E0FF; }
Code: Alles auswählen
/* Main table cell colours and backgrounds */
td.row1 { background-color: #C7E0FF; font-size:Xpx; }
td.row2 { background-color: #99CCFF; font-size:Xpx; }
td.row3 { background-color: #C7E0FF; font-size:Xpx; }
Code: Alles auswählen
$template -> assign_block_vars("amp_game_rows", array(
"POS" => $g,
"GAME" => $row['proper_name'],
"LINK" => "<a href='activity.". $phpEx ."?mode=game&id=". $row['game_id'] ."&parent=true&sid=". $userdata['session_id'] ."' class='gen'>". number_format($row['played']) ."</a>". $lang['amp_plays'])
);
$g++;
}