Again, I thank you for your help :smile:
Here is the entire tpl_paypal_logo.php file which [other than the change to the language file] was the only file I altered for this mod:
<?php
//
// +----------------------------------------------------------------------+
// |zen-cart Open Source E-commerce |
// +----------------------------------------------------------------------+
// | Copyright (c) 2007 The zen-cart developers |
// | |
// | http://www.zen-cart.com/index.php |
// | |
// | Portions Copyright (c) 2003 osCommerce |
// +----------------------------------------------------------------------+
// | This source file is subject to version 2.0 of the GPL license, |
// | that is bundled with this package in the file LICENSE, and is |
// | available through the world-wide-web at the following url: |
// | http://www.zen-cart.com/license/2_0.txt. |
// | If you did not receive a copy of the zen-cart license and are unable |
// | to obtain it through the world-wide-web, please send a note to |
// | [email protected] so we can mail you a copy immediately. |
// +----------------------------------------------------------------------+
// $Id: tpl_paypal_logo.php, v 1.0.6 2007/04/25 DrByte $
//
define('MODULE_PAYPAL_SEAL_LOGO_IMAGE_FILENAME', 'verification_seal.gif');
define('MODULE_PAYPAL_SEAL_VERIFIED_URL', 'https://www.paypal.com/verified/pal=');
$content = '';
$content .= '<div id="' . str_replace('_', '-', $box_id . 'Content') . '" class="sideBoxContent">' . "\n";
$content .= '<div class="wrapper">' . "\n";
$content .=
'<center>
<!-- Begin Official PayPal Seal -->
<a target="_blank" href="'.MODULE_PAYPAL_SEAL_VERIFIED_URL . $paypalID . '">' .
zen_image(DIR_WS_TEMPLATE_IMAGES . MODULE_PAYPAL_SEAL_LOGO_IMAGE_FILENAME, MODULE_PAYPAL_SEAL_ALT_TEXT, 100, 100) .
'</a>
<!-- End Official PayPal Seal -->
<!-- Begin eBay Certified Designer Seal -->
<a target="_blank" href="http://pages.ebay.com/storefronts/designdirectory.html">' .
$content .= '<img src="' . DIR_WS_TEMPLATE . 'images/eBayCertDesigner.gif">';
'</a>
<!-- End eBay Certified Designer Seal -->
</center>';
$content .= '</div>' . "\n";
$content .= '</div>';
?>
I'm sure it's possible that I inadvertantly did something while in the editor (I have cut or pasted accidentally before, when working on other coding - so it's possible I did that here...I really appreciate your help in sorting this out!
Sabastina