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.
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 http://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') . '/"> </a></div>' : '' );
and replace with
<a class="divclick" title="Title for this link" href="link_to_the_other_page"> </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.