Zen Cart Logo
Forums / Addon Templates / Blank Sidebox Mod v2.0

Blank Sidebox Mod v2.0

Locked

Views: 1,871

Results 1 to 4 of 4
This thread is locked. New replies are disabled.
7 Dec 2008, 8:45 AM
#1
jaden avatar

jaden

New Zenner

Join Date:
Oct 2006
Posts:
63
Plugin Contributions:
0

Blank Sidebox Mod v2.0

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_clocks/images/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

8 Dec 2008, 10:08 AM
#2
jaden avatar

jaden

New Zenner

Join Date:
Oct 2006
Posts:
63
Plugin Contributions:
0

Re: Blank Sidebox Mod v2.0

Ok nearly soughted!

Remove the paragraph tags to remove the space.

$content .= '' . TEXT_BLANK_SIDEBOX . '';
$content .= '<ahref="http://www.jadencomputers.com/poe_clocks/">
<img src="<http://www.jadencomputers.com/poe_clocks/images/ONT4SS.jpg>" alt="POE Clocks" width="135" height="75" align="middle">
</a>
';

But the link still does not work!

8 Dec 2008, 11:18 AM
#3
stevesh avatar

stevesh

Black Belt

Join Date:
Feb 2005
Location:
Lansing, Michigan USA
Posts:
19,793
Plugin Contributions:
2

Re: Blank Sidebox Mod v2.0

Generally, there's a space between a and href. Not sure if that's the problem, but you might check.

9 Dec 2008, 1:49 AM
#4
jaden avatar

jaden

New Zenner

Join Date:
Oct 2006
Posts:
63
Plugin Contributions:
0

Re: Blank Sidebox Mod v2.0

Stevesh thanks,
:oops:
a href="http://www.jadencomputers.com/poe_clocks/

that was the error. All good now. Appreciate you assistance. This is a great mod.

:smartalec: