I have a blog here: http://inmate-connection.blogspot.com/ How can I make the 728 X 90 banner in the header clickable and take the user to my website: http://www.inmate-connection.com/
<a href='http://inmate-connection.blogspot.com/' style='display: block'> <img alt='Inmate-Connection.com' height='90' id='Header1_headerimg' src='http://2.bp.blogspot.com/_W4a2gXD0sLE/SdeiiKB875I/AAAAAAAAABo/OUqCssBXQdg/S1600-R/728+X+90+NEW+BANNER.jpg' style='display: block' width='728'/> </a> If you view your source code you see the banner pointing to your blog. You need to edit your theme and change the link above.
I do not see any of this in the 'edit HTML' section on my blogger dashboard. If I edit the source code in notepad, what do I save the file as? Is this the same as my template?
Kaoz, Your answer does not help me. I do not see that line in the 'edit HTML' section of my blogger dashboard.
Try this and let me know if it works with you. Since you want a clickable header, I'm guessing that you already have a header image and it is hosted on a web hosting account. You will need the URL of this image later. First you will make a 'division' to hold the image and position it in your blog in the CSS style sheet between the <head> </head> tags: #myimage {float:right;} To make it clickable add this code after the <body> tag: <div id="myimage"> <p><a title="Your title" href="http://www.inmate-connection.com/"> <img border="0" src="image.url" alt="title of image" /> </a></p> </div>