Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / Credit Card Sidebox - adding link to image?

Credit Card Sidebox - adding link to image?

Locked

Views: 1,164

Results 1 to 4 of 4
This thread is locked. New replies are disabled.
12 Dec 2008, 1:11 AM
#1
ivanc avatar

ivanc

New Zenner

Join Date:
Dec 2007
Posts:
54
Plugin Contributions:
0

Credit Card Sidebox - adding link to image?

Please help, how to add a www link to the images in the following code:

$content = '';
$content .= '<div id="' . str_replace('_', '-', $box_id . 'Content') . '" class="sideBoxContent">'

. "\n";
$content .= '<img id="ccMC" class="cc_img" src="images/cc_logos/logo_ccMC.gif" />'

. "\n" .'<img id="ccVisa" class="cc_img" src="images/cc_logos/logo_ccVisa.gif" />' . "\n" .
'<img id="ccAmex" class="cc_img" src="images/cc_logos/logo_ccAmex.gif" />' . "\n" .
'<img id="ccDiners" class="cc_img" src="images/cc_logos/logo_ccEcheck.gif" />' . "\n" .
'<img id="ccOPG" class="cc_img" src="images/cc_logos/logo_ccEcheck.gif" />' . "\n";
$content .= '</div>' . "\n";
?>

Thank you!

BR,
ivan

13 Dec 2008, 2:33 PM
#2
steve_1 avatar

steve_1

Zen Follower

Join Date:
Sep 2008
Location:
London UK
Posts:
100
Plugin Contributions:
0

Re: Credit Card Sidebox - adding link to image?

same as you would any other link ... e.g.

$content .= '<img id="ccMC" class="cc_img" src="images/cc_logos/logo_ccMC.gif" />'

change to

$content .= '<a href="url here"><img id="ccMC" class="cc_img" src="images/cc_logos/logo_ccMC.gif" /></a>'

unless misreading your question ?

13 Dec 2008, 5:07 PM
#3
ivanc avatar

ivanc

New Zenner

Join Date:
Dec 2007
Posts:
54
Plugin Contributions:
0

Re: Credit Card Sidebox - adding link to image?

I tried with this:

<a href="http://www.something.com/" onclick="window.open(this.href,'newwin'); return false;"><img id="ccMC" class="cc_img" src="images/cc_logos/logo_ccMC.gif" /></a>

but it didn't work, made everything after the sidebox containing this code disappear, including the center content.

Your simpler code works fine, thank you!

14 Dec 2008, 12:07 PM
#4
steve_1 avatar

steve_1

Zen Follower

Join Date:
Sep 2008
Location:
London UK
Posts:
100
Plugin Contributions:
0

Re: Credit Card Sidebox - adding link to image?

sorry .. why using onclick to open a new window ?

just add

target="_blank"
``` to the <a href

if you really need to use onclick then change to

onclick="window.open(this.href,'newwin');

unless ... as I said am misreading your question