Hi,
Just getting set up with this theme (which is awesome) and was hoping to link the titles of the blocks from my homepage to pages on my site. Anyone know how to do this?
Thanks!
Hi,
Just getting set up with this theme (which is awesome) and was hoping to link the titles of the blocks from my homepage to pages on my site. Anyone know how to do this?
Thanks!
Go to Appearance> Editor and select "index.php" and find this line:
<h3><?php echo of_get_option('block1_text'); ?></h3>
and replace it with:
<h3><a href="your link here"><?php echo of_get_option('block1_text'); ?></a></h3>
do the same to these lines:
<h3><?php echo of_get_option('block2_text'); ?></h3>
<h3><?php echo of_get_option('block3_text'); ?></h3>
<h3><?php echo of_get_option('block4_text'); ?></h3>
perfect. thanks so much!
You must log in to post.