Re: Add Link to Header Image
so you removed
`
<a href="” title=””>
`
The easiest resolution is to return a portion of it in original location in your theme’s header.php
`<a id="my-logo" href="” title=””>`
– upload transparent image with height and width of your logo in header image and put that in img src above
Position the link image over area where where the logo in header image is in your style.css
For example:
`#my-logo {
height=100px;
width=300px;
position:absolute;
left:30px;
top:10px;
}`
Adjust to taste.