One thing to note, is that I could not change my FORUMHOME template as I do not have a set $navbar as does the default. My style has a multiple line reference to the navbar. However, that's where I got the code for the cmps. I am unsure at the moment on a vertical view, except maybe put in some code to change the variable that references the one in the admincp and then do a for each (or something) loop with a <br> command at the end before the function loops. Then display the results.
One possibilty is to set the amount in admincp to 1, then just copy the rand code x amount of times - whatever you feel like.
For example..
PHP Code:
<center>
<td class="thead" height="150" width="320" align="center">
<a HREF="attachment.php?attachmentid=$rand_gallery[attachmentid]">
<img src="attachment.php?attachmentid=$rand_gallery[attachmentid]&stc=1&thumb=1" border=0 align="center"></a>
</td>
</tr>
<tr>
<td valign="center" align="center" width="320" height="40">
<br />
<a href="showthread.php?t=$rand_gallery[threadid]">
$rand_gallery[title]
</a><br>
<td class="thead" height="150" width="320" align="center">
<a HREF="attachment.php?attachmentid=$rand_gallery[attachmentid]">
<img src="attachment.php?attachmentid=$rand_gallery[attachmentid]&stc=1&thumb=1" border=0 align="center"></a>
</td>
</tr>
<tr>
<td valign="center" align="center" width="320" height="40">
<br />
<a href="showthread.php?t=$rand_gallery[threadid]">
$rand_gallery[title]
</a><br>
<td class="thead" height="150" width="320" align="center">
<a HREF="attachment.php?attachmentid=$rand_gallery[attachmentid]">
<img src="attachment.php?attachmentid=$rand_gallery[attachmentid]&stc=1&thumb=1" border=0 align="center"></a>
</td>
</tr>
<tr>
<td valign="center" align="center" width="320" height="40">
<br />
<a href="showthread.php?t=$rand_gallery[threadid]">
$rand_gallery[title]
</a><br>
<td class="thead" height="150" width="320" align="center">
<a HREF="attachment.php?attachmentid=$rand_gallery[attachmentid]">
<img src="attachment.php?attachmentid=$rand_gallery[attachmentid]&stc=1&thumb=1" border=0 align="center"></a>
</td>
</tr>
<tr>
<td valign="center" align="center" width="320" height="40">
<br />
<a href="showthread.php?t=$rand_gallery[threadid]">
$rand_gallery[title]
</a><br>
</center>
I've not tested this, so I have no clue if it will work or not.