• At the moment the clickable header image goes to the home page. Is there a way of changing this so i can have it go to another page on my site?

Viewing 5 replies - 1 through 5 (of 5 total)
  • martin2c,

    Is there a way of changing this so i can have it go to another page on my site?

    Yes, there is a way. You’ll have to edit the appropriate template file, probably header.php. If you could give a link to your site or mention the theme you’re using, I could give a more specific instruction.

    Thread Starter martin2c

    (@martin2c)

    Hi

    using the atahaulpa theme. I’ve changed the header image but kept it saved as header6 in the iamges folder. I want the image to go to https://www.cheshire-mortgage-broker.co.uk/quote when it is clicked.

    Thanks for any help in advance

    Also see Designing Headers.

    Moving this to the How to… forum

    In functions/bfa_header_config.php around line 160 find

    <a class="divclick" title="' . get_bloginfo('name') . '" href ="' . get_option('home') . '/">&nbsp;</a></div>' : '' );

    and replace with

    <a class="divclick" title="Title for this link" href="link_to_the_other_page">&nbsp;</a></div>' : '' );

    Hi,

    You need to modify header.php file of your current active theme:

    Change This Line:

    <h1 id-header>
            <a href=<?php bloginfo(''); ?>
            <? php bloginfo('name'); ?> </a>
    </h1>

    To:

    <a href=<?php bloginfo(''); ?>
             <h1 id-header>
                    <? php bloginfo('name'); ?>
            </h1>
    </a>

    Thanks,

    Shane G.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Clickable header image’ is closed to new replies.