If you're refering to making it so that you have 2 columns of game listings, it's a matter of PHP programming. I don't think you can change that from the admin panel.
something along the lines of
Code:
controlvar1="0";
echo "<table";
while gamelist
{
if controlvar1=="0"
{
echo"<tr><td>
code for writing left table entry goes here
</td>";
controlvar1="1";
}
else
{
echo "<td>
code for writing right table box goes here
</td></tr>";
controlvar1="0";
}
echo "</table>";
};
You will of course need to adapt it to your own script. I'm not real familiar with GS so I'm not in a possition to fill in the details for you without looking it over real good.
Hope that helps.
Last edited by brendgard : 12-05-2007 at 06:35 AM.
|