Hi all,

I am trying to get rid of the space at the top of my image in the mod Blank Sidebox without much luck. I also can not get the url link to work??

www.jadencomputers.com (it is the POE clocks box)

bleow is my php file I have changed in the tpl_blank_sidebox.php

<?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><ahref="http://www.jadencomputers.com/poe_clocks/">
<img src="http://www.jadencomputers.com/poe_cl...ges/ONT4SS.jpg" alt="POE Clocks" width="135" height="75" align="middle">
</a>
</p>';
$content .= '</div>';


This is the blank_sidebox_defines.php

<?php
/**
* blank sidebox definitions - text for inclusion in a new blank sidebox
*
* @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 $
*/
define('BOX_HEADING_BLANK_SIDEBOX', 'POE Clocks');
define('TEXT_BLANK_SIDEBOX', '');
?>

Thanks in advance.

Jaden