Hi, I guess after over a year you have either sorted it out or givin up, but to help anybod else, this is how I did it in Joomla.
For a preview, look here...
http://www.spanishvida.com
Hope it helps.
// Leading story output
if ( $leading ) {
echo '<tr>';
echo '<td valign="top">';
for ( $z = 0; $z < $leading; $z++ ) {
if ( $i >= ($total - $limitstart) ) {
// stops loop if total number of items is less than the number set to display as leading
break;
}
echo '<div> <table width="100%" border="4" bordercolor="#0066FF">
<tr>
<td>';
show( $rows[$i], $params, $gid, $access, $pop );
echo '</td>
</tr>
</table></div>';
$i++;
}
echo '</td>';
echo '</tr>';
}