How to set links to images in home page services boxes

Please Note: Theme customizations go beyond the scope of our support services and this article is provided solely as a courtesy to our customers. Please take a moment to review the Scope of our Support.

If you would like to set links to the images of the 3 boxes on the home page, then you have to do a small change – you have to open the template-home.php file and replace line 40:

 <img src="<?php echo get_opt('_home_box_icon'.$i); ?>" class="img-frame" /> 

with this line:

<a href="<?php echo get_opt('_home_box_btn_link'.$i); ?>" ><img src="<?php echo get_opt('_home_box_icon'.$i); ?>" class="img-frame" /></a>

Was this useful? 6