Hi
Yeah, that's what I thought originally. So I turned off and on the sideboxes, including standard zen cart sideboxes, and it doesn't work with any of the sideboxes. I also had a look at the stylesheet to see if there are any problems there, but there is nothing amiss.

I know the sidebox templates follow a different format from what I have read, it doesn't just work by copying and pasting the product_info template code that you kindly provided, but I am having a hard time translating it into the sidebox template.

This is the code that I came up with:
PHP Code:
<?php
/**
 * editable sidebox - allows a sidebox editable with the define pages editor to be added to your site
 *
 * @package templateSystem
 * @copyright 2007 Kuroi Web Design
  * @copyright Portions Copyright 2003-2007 Zen Cart Development Team
 * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
 * @version $Id: blank_sidebox.php 2007-08-10 kuroi $
 */
$content '';
$content .= '<div id="' str_replace('_''-'$box_id 'Content') . '" class="sideBoxContent">';
$content file_get_contents($define_sidebox);
$content .= '<div class="adbox">'.$extra_field .'</div>';
$content .= '<div class="adbox">' .$current_categories_description_sub .'</div>' ;
$content .= '<div class="adbox">'.$products_file_1_link '</div>' ;
$content .= '<div class="adbox">'.$products_file_2_link '</div>' ;
$content .= '<div class="adbox">'.$products_file_3_link '</div>' ;
$content .= '<div class="adbox">'.$products_file_4_link '</div>' ;


  
// this is where the content that you have via the Admin is pulled in.
$content .= '</div>';
?>
But I have no idea if it is right, or has any errors? I just know that it breaks when I put the sidebox in the same column as any other sidebox.

Thanks