I have tried ajusting the image sizes. I ahve this set up so i can do this within the admin panel. No matter how small the images are they still only display in a column to the left of that sidebox. The sidebox column is 150px wide, i have tried image sizes at 75px width and just tried 25px width but still has the same effect.

The sidebox displays fine on the main page, categories page (obviously not with the column layout i require) however as soon as i click on a specific item and it takes me to that item page, i get the error outlined in the previous post. This is the same in all browsers.

I have in my english/mytemplate/index.php page - define('BOX_MANUFACTURER_MAX_LOGOS', '10'); This is set as follows, would i have it in the correct place within the index page??

PHP Code:
<?php
/**
 * @package languageDefines
 * @copyright Copyright 2003-2006 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: index.php 6550 2007-07-05 03:54:54Z drbyte $
 */

define('TEXT_MAIN','This is the main define statement for the page for english when no template defined file exists. It is located in: <strong>/includes/languages/english/index.php</strong>');

// Showcase vs Store
if (STORE_STATUS == '0') {
  
define('TEXT_GREETING_GUEST''');
} else {
  
define('TEXT_GREETING_GUEST''Welcome, please enjoy our online showcase.');
}

define('TEXT_GREETING_PERSONAL''Hello <span class="greetUser">%s</span>! Would you like to see our <a href="%s">newest additions</a>?');

define('TEXT_INFORMATION''Define your main Index page copy here.');

//moved to english
//define('TABLE_HEADING_FEATURED_PRODUCTS','Featured Products');

//define('TABLE_HEADING_NEW_PRODUCTS', 'New Products For %s');
//define('TABLE_HEADING_UPCOMING_PRODUCTS', 'Upcoming Products');
//define('TABLE_HEADING_DATE_EXPECTED', 'Date Expected');

if ( ($category_depth == 'products') || (zen_check_url_get_terms()) ) {
  
// This section deals with product-listing page contents
  
define('HEADING_TITLE''Available Products');
  
define('TABLE_HEADING_IMAGE''Product Image');
  
define('TABLE_HEADING_MODEL''Model');
  
define('TABLE_HEADING_PRODUCTS''Product Name');
  
define('TABLE_HEADING_MANUFACTURER''Manufacturer');
  
define('TABLE_HEADING_QUANTITY''Quantity');
  
define('TABLE_HEADING_PRICE''Price');
  
define('TABLE_HEADING_WEIGHT''Weight');
  
define('TABLE_HEADING_BUY_NOW''Buy Now');
  
define('TEXT_NO_PRODUCTS''There are no products to list in this category.');
  
define('TEXT_NO_PRODUCTS2''There is no product available from this manufacturer.');
  
define('TEXT_NUMBER_OF_PRODUCTS''Number of Products: ');
  
define('TEXT_SHOW''Filter Results by:');
  
define('TEXT_BUY''Buy 1 \'');
  
define('TEXT_NOW''\' now');
  
define('TEXT_ALL_CATEGORIES''All Categories');
  
define('TEXT_ALL_MANUFACTURERS''All Manufacturers');
  
} elseif (
$category_depth == 'top') {
  
// This section deals with the "home" page at the top level with no options/products selected
  /*Replace this text with the headline you would like for your shop. For example: 'Welcome to My SHOP!'*/
  
define('HEADING_TITLE''');
} elseif (
$category_depth == 'nested') {
  
// This section deals with displaying a subcategory
  /*Replace this line with the headline you would like for your shop. For example: 'Welcome to My SHOP!'*/
  
define('HEADING_TITLE''Congratulations! You have successfully installed your Zen Cart&trade; E-Commerce Solution.'); 
}

define('BOX_HEADING_MANUFACTURERS_IMG''Manufacturers');
define('BOX_MANUFACTURER_HOMEPAGE_IMG''Web of %s');
define('BOX_MANUFACTURER_MAX_LOGOS''10');
?>