What you have posted is not the tpl_information.php file as I post the full content below - only a tatal of 19 lines...where did your get this file content??
Code:<?php /** * Side Box Template * * @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_information.php 2982 2006-02-07 07:56:41Z birdbrain $ */ $content = ''; $content .= '<div id="' . str_replace('_', '-', $box_id . 'Content') . '" class="sideBoxContent">'; $content .= "\n" . '<ul style="margin: 0; padding: 0; list-style-type: none;">' . "\n"; for ($i=0; $i<sizeof($information); $i++) { $content .= '<li>' . $information[$i] . '</li>' . "\n"; } $content .= '</ul>' . "\n"; $content .= '</div>'; ?>


What i posted was from the blank sidebox module . After fussing around so long last night, i just decided to install the blank sidebox and put the logo in there. What i provided was from that set of files includes/templates/template_default/sideboxes/tpl_blank_sidebox


