Thanks Mel,
I did edit one bit, but I am not able to locate the text
"Replace this text with your HTML content." From the code, below is the code. There is line saids
$content .= '<p>' . TEXT_BLANK_SIDEBOX . '</p>';
But I got no idea where TEXT_BLANK_SIDEBOX is.
<?php
/**
* blank sidebox - allows a blank sidebox 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-05-26 kuroi $
*/
$content = '';
$content .= '<div id="' . str_replace('_', '-', $box_id . 'Content') . '" class="sideBoxContent">';
// Replace the text and HTML tags between the apostophes on lines 19 and 20.
// Use as many or as few lines using this model as you need for your custom content.
// If you have a multilingual site define your text in the languages/YOUR_LANGUAGE/extra_definitions/blank_sidebox_defines.php and include it as shown in line 19.
// If your site is monolingual, you can put the text right here as shown on line 20 (and nobody will know!)
$content .= '<p>' . TEXT_BLANK_SIDEBOX . '</p>';
$content .= '<p><a href="http://www.gameaccent.com/index.php?main_page=product_info&cPath=22&products_id=78"><img src="http://www.gameaccent.com/images//PSP2000Black.jpg" alt="PSP 2000" width="128" height="128" align="middle"> </a></p>';
$content .= '</div>';
?>