• Hello,

    I have a quick question on themes. I have a wp blog setup for a friend and he wants it that once he is in the blog page (www.christopherbarretto.com/blog), and he clicks on the big name “Christopher Barretto” at the upper left corner, it will go back to his main page which is https://www.christopherbarretto.com

    I tried to go on to settings but I didn’t find anyway to redirect it back.

    Thanks you

Viewing 3 replies - 1 through 3 (of 3 total)
  • 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.

    Thread Starter Zamboolah Wigi Wigi

    (@burokhuli)

    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="https://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="https://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="https://www.christopherbarretto.com">?php bloginfo('name'); ?></a>

    I think that will do it.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Linking The Main Header?’ is closed to new replies.