Making an hi have a backgroung-image?

On
http://fixmysite.us/darren/new/
How do I make the whole image become the link
I know if I put text-indent:-999px; rule on that h1, it will the hide the text, but how do I make the image the link instead?
\
Thanks…

As the image is set as a background on the h1 (.logo) and the anchor is a child of the h1, you could set the anchor to fill its parent.

.logo a {
    display:block;
    height:100%;
}