How to Change Title Link

Permalink
How do you change the Title/Logo Link of your site? I made a splash page, so now when the Title/Logo at the top of each page reroutes to the splash page instead of the home landing page. I tried to change it through the global stacks, but it didn't work. I'm guessing I will have to change some code in the header.php. How do I do this?

This is the code in the header.php:

<div id="page">
<div id="headerSpacer"></div>
<div id="header">

<?php if ($c->isEditMode()) { ?>
<div style="min-height: 80px">
<?php } ?>

<div id="headerNav">
<?php
$a = new Area('Header Nav');
$a->display($c);
?>
</div>

<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><!--
--></h1>




Thanks!

 
jero replied on at Permalink Best Answer Reply
jero
I guess you need to change
DIR_REL to

echo DIR_REL.'/my_splash_page'
desh123456 replied on at Permalink Reply
Thank You! Worked Perfectly!