It's easy to make a div into a link using a bit of javascript. You can use this technique to make any div "clickable". For example, you might want your "header" div to link to your home page. Here's how:
<div onclick="location.href='http://www.example.com';" style="cursor:pointer;"></div>
If you're using a standard WordPress theme, you can make your header div clickable by doing this:
<div id="header" onclick="location.href='<?php bloginfo('url');?>';" style="cursor:pointer;"></div>
That's it!





Nice idea! (I just wish it didn’t rely on Javascript…)