My_Site_Name linking to current page

Permalink
When I click my site name (which I have changed to my logo) it takes me to the current page I am on not back to the home page! How do I change it to take me back to the home page?

Thanks guys!

 
pixel8 replied on at Permalink Reply
pixel8
now, that I don't know if you're running a default theme or a home cooked one, I will show you how to do it in the plain youghurt theme..

in the themes folder you go to /your_theme/elements/header.php


<h1 id="logo"><!--
         --><a href="<?php echo DIR_REL?>/"><?php 
            $block = Block::getByName('My_Site_Name');  
            if( $block && $block->bID ) $block->display();   
            else echo SITE;
         ?></a>


the thing that makes it link to the front page is this piece of code:

<?php echo DIR_REL?>


so this is what you want to put into your
<a href="<?php echo DIR_REL?>"><img src="your_logo.png" alt="logo" /></a>



hope this helps you :-)