Misty,
Thanks for the help I overlooked those files earlier. They just about did the trick. I used one, which sent my additional images back to the bottom. However, a quick mod and it was back to the top. But now I can't figure out how to get it centered. I'm assuming it's in "tpl_modules_additional_images.php" since that is the only difference I can see between the functions that call the main image and the additional images. I am posting a copy of my additional images file if it may be of any help.
<?php
/**
* Module Template:
* Loaded by product-type template to display additional product images.
*
* @package templateSystem
* @copyright Copyright 2003-2005 Zen Cart Development Team
* @copyright Portions Copyright 2003 osCommerce
* @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
* @version $Id: tpl_modules_additional_images.php 3215 2006-03-20 06:05:55Z birdbrain $
*/
require(DIR_WS_MODULES . zen_get_module_directory('additional_images.php'));
?>
<?php
if ($flag_show_product_info_additional_images != 0 && $num_images > 0) {
?>
<div id="productAdditionalImages">
<?php
require($template->get_template_dir('tpl_columnar_display.php',DIR_WS_TEMPLATE, $current_page_base,'common'). '/tpl_columnar_display.php'); ?>
</div>
<?php
}
?>
Thanks again!



