Hi guys,a couple people tried to help me in the shoutbox yesterday with this problem,but im a total noob coder lol.. maybe someone can help me align the cat headers for me (see screenshot,or site for wht i mean)

PHP Code: 
       <table cellspacing="2" cellpadding="2">
       {
php} global $SEOFriendlyURLs,$themepath;
          
$catarray am_listgamecats($db'none''flat'); // Get the array of category names
          
$c=1;
          
$m=4;
          foreach (
$catarray as $a) {

             if(
$c == 1) { echo '<tr>';}

             echo 
'<td valign="top" width="25%">';
             echo 
'<div class="topcategory">';
              if(
$SEOFriendlyURLs == 0)
                {
                 
$url './index.php?cat='.urlencode($a);
             } else {
                 
$url './index.php?cat='.urlencode($a);
             }

             echo 
'<table width="100%" cellspacing="2" cellpadding="2">
             <tr>
             <td valign="top" align="center"><a href="'
.$url.'"><h2><b>'.$a.'</h2></b></a>
             </td></tr>
             <tr>
             <td valign="top">'
;
             echo 
'<center>';
             
am_listnewgames('table'5$a,true,60,60);
             echo 
'</center></td></tr>';

             echo 
'<tr>
             <td valign="top"><a href="'
.$url.'">More '.$a.' Games</a>
             </td>
             </tr>'
;

             echo 
'</table>';
             echo 
'</td>';

             if(
$c == $m) { echo '</tr>'$c=0;} $c++;
          }
       {/
php}
       </
table
i believe somewhere here is where i need to do it,as i said im noob to coding this type of thing,my skills are very basic still

screenshot of wht needs to be aligned,notice the cat headers are riding the top

iMage Reviewed by iMage on . alignment help needed Hi guys,a couple people tried to help me in the shoutbox yesterday with this problem,but im a total noob coder lol.. maybe someone can help me align the cat headers for me (see screenshot,or site for wht i mean) <table cellspacing="2" cellpadding="2"> {php} global $SEOFriendlyURLs,$themepath; $catarray = am_listgamecats($db, 'none', 'flat'); // Get the array of category names $c=1; $m=4; foreach ($catarray as $a) { Rating: 5