I have a master page that is referenceing a css style sheet that places an image that I want to link to. countdown block is the image style:

<div id="countdown_block">
<div id="countdown">Days left in <strong>FY</strong>
<script type="text/javascript">document.write(y);</script>
</strong></div>
<div id="daysLeft">
<script type="text/javascript">document.write(calculatediff);</script>
</div>
</div>

Where do I put the href?

You cannot put an "href" on a div. Put the anchor around the div like so:

<a href="http://google.com">
	<div></div>
</a>
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.