I'm sure it's because I'm stabbing in the dark, but I've looked high and low for an answer... I've even tried the google search hint using the site:zen-cart.com/forum/ suggestion. My problem is that the image I've got in my Blank Sidebox contribution won't show on my SSL pages. I see the alternate text and I can get to the image if I enter the page address without problem so I'm *assuming* that it is because I've got something wrong in includes/templates/MY_TEMPLATE/sideboxes/tpl_blank_sidebox.php
Everything I've managed to kludge together so far has been taken from responses to other's posts and since I don't know what I'm doing I suspect that I've typed something that applied in one instance and not to mine
Here are the contents of tpl_blank_sidebox.php:
The side box works fine on non-SSL pages (see my site at www.remarkablepens.com ). I've placed a copy of the image in both images and secure/images ...Code:/** * 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 align="center" 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 .= zen_image(DIR_WS_IMAGES . 'litessl_tl_trans.gif', 'COMODO Logo'); $content .= '</div>'; ?>







