I'm having trouble with my header links not working. I've tried adjusting the z-index, changing href=. . to href=, and removing APdiv, but none of these solutions have worked. Another issue I noticed is that I can't highlight the text in the header.
Header
<div class='container'>
<div class='five columns logo'></div>
<div class='eleven columns'>
<div id="apDiv2"><img src="images/misc/logo.jpg" width="144" height="38"></div>
<ul class='mainMenu'>
<li><a href='index.php' title='Home' style="color: #FFF">Home</a></li>
<li><a href='about_us.php' title='About us' style="color: #FFF">About us</a></li>
<li><a href='#' title='Pricing' style="color: #FFF">Pricing</a></li>
<li><a href='#' title='Blog' style="color: #FFF">Blog</a></li>
<li><a href='#' title='Portfolio' style="color: #FFF">Portfolio</a></li>
<li><a href='#' title='Contact' style="color: #FFF">Contact</a></li>
</ul>
</div>
</div>
Css
body {
margin:0;
padding: 0;
font-family: "Open Sans", Arial, sans-serif;
}
body {
background: #fff;
color: #585858;
font-size: 24px;
}
...