hi I followed this thread to learn how to replace the title with an image. But now I'd like to make that image a hyper-link that always returns to the home page. I'm working on a locally hosted site so I can't send a link. Thanks!
hi I followed this thread to learn how to replace the title with an image. But now I'd like to make that image a hyper-link that always returns to the home page. I'm working on a locally hosted site so I can't send a link. Thanks!
Have you made it a hyperlink already?
No; I can't seem to figure i out.
I inserted this bit in the header.php of my child theme:
<img class="site-logo" src="<?php echo get_stylesheet_directory_uri(); ?>/images/site-logo.png" alt="site logo" />
I'm too much of a noob to figure out where to put the href = "..." bit.
Try this;
<a href="/">
<img class="site-logo" src="<?php echo get_stylesheet_directory_uri(); ?>/images/site-logo.png" alt="site logo" />
</a>
Thanks! that worked perfectly!
You must log in to post.