Heres how to make the a entire Div “clickable” with some simple Javascript.
<div onclick="location.href='http://www.example.com';" style="cursor:pointer;"></div>
or for WordPress use this
<div id="header" onclick="location.href='<?php bloginfo('url');?>';" style="cursor:pointer;"></div>
Simple!