- Edited
Hi,
On the About Us for the 'About Us' section, is there a way of making the images hyper links, please?
Thanks
Hi,
On the About Us for the 'About Us' section, is there a way of making the images hyper links, please?
Thanks
greendome
Hi
open template folder /acm/features-intro/tmpl/style.php
Find this code
<img src="<?php echo $helper->get('img-icon', $i) ?>" alt="" />
Replace it with
<a href="<?php echo $helper->get('link', $i) ?>">
<img src="<?php echo $helper->get('img-icon', $i) ?>" alt="" />
</a>
Now all images are linked with Feature link option in the module.
Regards
Thank you - worked perfectly.