Bill, I’ll give you the same block I gave Rain, just a cut and paste fix to allow you to use the title and have your header image clickable. (note: backup header.php just in case, you never know)
Take everything in the header tag: (Don’t have my Dev machine otherwise I’d quote the PHP stuff too)
<div id="header">
<div id="header-image">
<h1>PHP code..blahblah..</h1>
<div class="description"></div>
</div>
</div>
and just paste the following over it:
<div id="header">
<a href="https://www.creative-i.info/">
<div id="header-image">
<h1></h1>
<div class="description"></div>
</div>
</a>
</div>
This should allow you to use a blog title and have the top click able to get “Home” in sub pages. You might be able to remove the <h1></h1>
but it may not render correctly if you do that – I’m not in a CSS mindset today.