Hi
Thanks again - I am obviously doing something wrong as I can get the new sidebox up to appear but not my image - rather than continue loading, deleting, reloading and trying once again I thought it may be better if I show you the codes and you may be able to spot my errors:
tpl_why_shop_with_us.php
<?php
$content = '';
$content .= '<div id="' . str_replace('_', '-', $box_id . 'Content') . '" class="sideBoxContent">';
$content .= '';
$content .= '<p><img src="/public_html/includes/templates/darkness/images/why_shop_with_us_animated.gif" width="125" height="125"></p>';
$content .= '</div>';
?>
why_shop_with_us.php
<?php
$show_why_shop_with_us = true;
if ($show_why_shop_with_us == true) {
require($template->get_template_dir('tpl_why_shop_with_us.php',DIR_WS_TEMPLATE, $current_page_base,'sideboxes'). '/tpl_why_shop_with_us.php');
$title = BOX_HEADING_WHY_SHOP_WITH_US;
$title_link = false;
require($template->get_template_dir($column_box_default, DIR_WS_TEMPLATE, $current_page_base,'common') . '/' . $column_box_default);
}
?>
why_shop_with_us_defines.php
<?php
define('BOX_HEADING_WHY_SHOP_WITH_US', 'Why Shop With Us?');
define('TEXT_WHY_SHOP_WITH_US', '<p><img src="/public_html/includes/templates/darkness/images/why_shop_with_us_animated.gif" width="125" height="125"></p>');
?>
Thanks again
Helen