His content is all Flash – there is no HTML to link to. His name that you want to link to is part of the Flash. You will have to add the link within the Flash movie.
Hi stvwlf,
I don’t understand. I was referring to that “name” on the upperleft corner, the big name when you enter “www.chirstopherbarretto.com/blog”. I was hoping that when you click on that name it would point to the main site instead of the main blog page.
Oh, sorry. I misunderstood what you were looking for earlier.
I got this code from the blog’s View Source display.
<div id="header">
<div id="headerimg">
<h1><a href="http://www.christopherbarretto.com/blog/">Christopher Barretto</a></h1>
<div class="description">moments, feel, anticipation – life in photos</div>
</div>
</div>
That would most likely be from the theme’s header.php file.
The code that needs to be changed is
<a href="http://www.christopherbarretto.com/blog/">Christopher Barretto</a>
In header.php it won’t look like that – there will be some PHP code, something like <a href="<?php echo get_option('home'); ?>/"><?php bloginfo('name'); ?></a>
Change that to
<a href="http://www.christopherbarretto.com">?php bloginfo('name'); ?></a>
I think that will do it.