Go to the header.php
Find this bit of code:
<a href="<?php echo esc_url( home_url( '/' ) ); ?>">
Replace with:
<a href="http://davidhornbrook.com/">
Should work – else ask again.
OK! I found header.php
This is what I have now
<h1 id="site-title"><span><<a href="http://davidhornbrook.com/"> title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></span></h1>
And now it does not display the titles correctly.
Also, it does not link to the website.
Did I do something wrong?
Sorry ’bout that. I had some issues with posting my code in there.
I still don’t have it working. But thanks for helping
<h1 id="site-title"><span><<a href="http://davidhornbrook.com/"> title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></span></h1>
THis should be:
<h1 id="site-title"><span><a href="http://davidhornbrook.com/"> title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></span></h1>
An extra “<”
—-
Also this is not what you originally asked. I thought you only wanted the header image to point towards your main page.
Search for the exact code I posted above and replace that to get the header image to point the main page.
—-
Should be it
Do a search and paste that bit of code.
Its CTRL+F in Firefox!
Then you can replace it.
Thx Pixelrow!
I did remove the extra “<” and you can see that when you go to http://davidhornbrook.com/wordpress/
that it does not display correctly, nor does the header link to hornbook.com, it still goes to davidhornbrook.com/wordpress.
I can find the code that you had me type in when I view source, so I know it’s there
Heck, I am willing to let you remote view my machine or give you FTP access to the site!
my *mail
chad at hornbrook.com
Sorry I didn’t spot this but you had two extra “>”
<h1 id="site-title"><span><a href="http://davidhornbrook.com/" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></span></h1>
This should work!
—
I can find the code that you had me type in when I view source, so I know it’s there
Heck, I am willing to let you remote view my machine or give you FTP access to the site!
my *mail
chad at hornbrook.com
If you can find the code then replace it – I don’t get what your problem is with the header image bit.
By the way – you are meant to find that in your header.php file!
—
Tell you what use Pastebin.com to paste the whole content of your header.php and send the link.
I’ll add what you want and send it back.
OK, I think I did this right
Here is the Pastebin link
http://pastebin.com/Q0XEttda
It has the the Title Header Problem
This is the Header.php file that is located in
/davidhornbrook/wordpress/wp-content/themes/twentyeleven
of the actual website
I just want it so that when they click on this image (wherever it appears i.e. all his wordpress pages) it takes them to his site, not the wordpress site
Thx again for all of your help!!!
I noticed that the Text that says “David’s Blog” is what links to his site. I need the Image (the logo) to link to his site.
Sorry for the confusion.
I want to change where the Image that I used (logo) hyperlinks to. Right now it hyperlinks to wordpress
davidhornbrook.com/wordpress
and I want it to link to the actual site
davidhornbrook.com
Thx for any input.
There you go:
http://pastebin.com/DxmEXnnr
This should make the header image link to http://davidhornbrook.com/
Copy and paste it into the header.php
Thx Pixelrow!
I now have out working thanks to you!!