Hello nickHiebert,
Try moving that closing tag for #header down to include your menu...
Like this -
Code:
<div id="container">
<div id="header">
<h1><a href="http://nickhiebert.com/"><img src="images/logo.png" alt="header h1">Nick Hiebert</a></h1>
<ul id="nav">
<li><a href="resume.html">Resume</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="about.html">About</a></li>
</ul>
<!-- end nav-->
</div>
<!--end header-->
<div id="main">
<div id="secondary">
<h4>Portfolio Links</h4>
<li><a href="http://99designs.com/people/nhiebert" target="_blank">99designs Profile</a></li>
Changing a few things in your CSS makes the clickable area match the size of your header.
Like this -
Code:
/* NAV */
/*----------------------------------------------------------------------------------------------------------*/
#nav {
background:url(http://nickhiebert.com/test_site/images/nav_bg.png) repeat-x;
overflow: hidden;
height: 93px;
margin-right: 0;
margin-left: 0;
margin-top: -95px;
padding: 0 0 0 31px;
}
#nav li {
float: right;
}
#nav li a {
line-height: 93px;
display: block;
padding-left: 50px;
padding-right: 85px;
color: #565354;
text-transform: uppercase;
font-size: 17.3px;
font-weight: bold;
font-family: Arial, Helvetica, sans-serif;
list-style-type: none;
}
#nav li a.first, #nav li a:hover {
color: #f00;
}
/* SIDEBAR*/