Make the left portion of the site header clickable

The header image is a full width background image, the whole thing is not clickable, but the portion with the directory logo is.
diff --git a/layouts/partials/header.html b/layouts/partials/header.html
index fbe070b..f6ed552 100644
--- a/layouts/partials/header.html
+++ b/layouts/partials/header.html
@@ -1,4 +1,5 @@
 <div id="header">

+    <a href="/"><div id="headerClick"></div></a>

     <div id="subProjectsNavBar">

         <a href="/">

             {{ if eq .project "home" }}

diff --git a/static/css/common.css b/static/css/common.css
index 7b847a3..f57410b 100644
--- a/static/css/common.css
+++ b/static/css/common.css
@@ -101,6 +101,15 @@
 	background-repeat: no-repeat;
 }
 
+#headerClick
+{
+	width: 500px;
+	height: 152px;
+	position: absolute;
+	margin-top: 10px;
+	margin-left: 10px;
+}
+
 #subProjectsNavBar 
 {
 	color: white;