How do I add links to images on template?

How do I add clickable links on the images? Please see image attached. Red circle marks are where I need for clickable regions. Any idea how I make these images "clickable" with links.

Thanks so much in advance.

3 answers

sbaldwin 0.00 $tone September 4, 2009
Public

I don’t have this template however if you open the module (find what position it is and open it). Then in your WYSIWYG editor "click’ or select your image and then the "link" button and enter the path to your article or website that you want to link to.

#1
Profile photo of Klaus Mogensen 0.00 $tone September 8, 2009
Public

I haven’t tried with the Catalog’s picture -- But the blocks on the right, you change here:

find this file:
app/design/frontend/default/jm_lead/template/callouts/right_col.phtml

If you’re using the original find:

Code:

<img src="<?php echo $this->getSkinUrl('images/media/col_right_callout.jpg') ?>"  alt="<?php echo __('Keep your eyes open for our special Back to School items and save A LOT!') ?>" style="display:block;padding-top: 10px;" />

Change to:

Code:

<a href="http://yourlink.com" target="_blank"><img src="<?php echo $this->getSkinUrl('images/media/col_right_callout.jpg') ?>"  alt="<?php echo __('Keep your eyes open for our special Back to School items and save A LOT!') ?>" style="display:block;padding-top: 10px;" /></a>

That should do it.

#3

This question is now closed

Written By

Comments