This will work if you want a list on the Sides.
Quote:
image
*space*
image
*space*
image
*space*
image
*space*
|
In the template "adv_portal_gallery_random" look for:
PHP Code:
$randomimagebits
... and replace it with:
PHP Code:
<tr><td class="alt1" align="center">$randomimagebits</td></tr>
Now in the "gallery_random.php" module itself look for:
PHP Code:
$randomimagebits .= construct_imagebits($images);
... and replace it with:
PHP Code:
$images['url'] = construct_image_url($images, 'thumbname');
$randomimagebits .= '<a href="' . $vba_options['gallery_url'] . '/showimage.php?' . $vbulletin->session->vars['sessionurl'] . 'i=' . $images[imageid] . '"><img alt="' . $images[title] . '" border="0" src="' . $images[url] . '" /></a><br /><br/>';