try to change this:
Code:
<td width="302" valign="top"><table width="250" border="0" cellspacing="0" cellpadding="0">
<tr><td height="25" style="background-image: url('.$muweb['images'].'/rss_content.jpg);"><div class="content_title" align="right">Latest Forum Post </div></td></tr>
<tr><td>'.ShowRSS($muweb['forumfeeds']).'</td></tr>
</table></td>
with:
Code:
<td width="302" valign="top"><table width="250" border="0" cellspacing="0" cellpadding="0" align="right">
<tr><td colspan="2" height="25" style="background-image: url('.$muweb['images'].'/top_content.jpg);"><div class="content_title" align="right">Top 5 Guilds </div></td></tr>'; $db_top_ranking = file("sys_/muweb_db/".db_top_guilds.tDB.""); $count = 0; foreach ($db_top_ranking as $s_c) { $s_c = explode("|", $s_c); if($muweb['rankings_gm'] == 1){ if($s_c[9] == 0 || $s_c[9] == 32 || $s_c[9] == 8){ $count++; $footer_content .= "<tr><td width='31' height='11' align='right'><img src='".$muweb['images']."/t_$count.gif' width='11' height='11' alt=''></td><td align='left'> <a href='".$muweb['servername']."-Guild-".$s_c[0].".html' title='Click to view more info'>".md5_decrypt(htmlentities($s_c[1]))."</a><span class='rankings_text'> :: $s_c[3][<span class='rankings_text_reset'>$s_c[4]</span>] :: <em>".class_list($s_c[2],'short')."</em></span></td>"; } }else{ if($s_c[9] == 0){ $count++; $footer_content .= "<tr><td width='31' height='11' align='right'><img src='".$muweb['images']."/t_$count.gif' width='11' height='11' alt=''></td><td align='left'> <a href='".$muweb['servername']."-Guild-".$s_c[0].".html' title='Click to view more info'>".md5_decrypt(htmlentities($s_c[1]))."</a><span class='rankings_text'> :: $s_c[3][<span class='rankings_text_reset'>$s_c[4]</span>] :: <em>".class_list($s_c[2],'short')."</em></span></td>"; } } if($count >= 5){ break; } } $footer_content .='</table></td>
</table>