I'm having a major issue with this code. Despite reading all related posts, I still can't get it to work. Seems like I might be missing something obvious. LOL.
Here is the site (best viewed in Chrome): and here is what I believe is the simplified code: http://jsfiddle.net/r8Rc9/4/
<div id="menubar" align="center">
<ul class="menu">
<li class="home"><a href="index.html">Home</a></li>
<li class="services"><a href="services.html">Services</a></li>
<li class="enquiry"><a href="enquiry.html">Enquiry</a></li>
<li class="aboutaal"><a href="aboutall.html">About AAL</a></li>
<li class="contactus"><a href="contactus.html">Contact us</a></li>
</ul>
</div>
<style>
#menubar { height:50px; width:735px;}
#menubar ul { display:inline;}
#menubar li { margin:0 0 0 0; padding:0 0 0 0; border:0; list-style-type:none; display:block; float:left;}
#menubar li a:link, #menubar li a:visited { display:block; height:50px; width:147px;}
</style>
Could someone please assist me in aligning that last 'li' element? It's acting bizarrely in Chrome. Thanks a lot for any help offered.