How to set links to images in home page services boxes
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>