I've spent a few days already finding a way to evenly space variable sized menu items across a fixed width horizontal bar, and finally found a jquery solution detailed here. The problem I now have is that my nested drop-down menus appear quite differently in different browsers and I very simply need them to drop down from their respective li anchors properly.
So far it looks ok on firefox. In Internet Explorer the dorp down menu's are pushed over to the right, and in Safari they are pushed over to the left. I've tried a number of things, but I think it's beyond me at the moment.
here's the relevant HTML & CSS, although you can view source on the site too:
<nav>
<ul id="main-nav">
<li><a href="#">Home</a></li>
<li><a href="#">Products</a>
<ul>
<li><a href="#">Wood Wool</a></li>
<li><a href="#">Wood Wool Bales</a></li>
<li><a href="#">Wood Wool Rope</a></li>
<li><a href="#">Coloured Wood Wool</a></li>
</ul>
</li>
<li><a href="#">Applications</a>
<ul>
<li><a href="#">Hamper Packaging</a></li>
<li><a href="#">Wine & Champagne</a></li>
<li><a href="#">General Gifts</a></li>
<li><a href="#">Soaps & Cosmetics</a></li>
<li><a href="#">Shellfish Packaging</a></li>
<li><a href="#">Stable Bedding</a></li>
<li><a href="#">Industrial</a></li>
<li><a href="#">Pesticide Alternative</a></li>
</ul>
</li>
<li><a href="#">What's Wood Wool?</a></li>
<li><a href="#">The Eco Bit</a></li>
<li><a href="#">Get in touch</a></li>
<li><a href="#">Blog</a></li>
</ul>
</nav>
/* NAVIGATION BAR */
header nav{
background-image: url(../_images/nav-bar-bg.png);
height: 48px;
width: 960px;
position: absolute;
top: 96px;
}
header nav #main-nav{
width:900px;
margin-left:30px;
}
header nav ul li {
display:block;
float: left;
}
header nav ul li a {
display:inline-block;
height:48px;
line-height:48px;
text-decoration: none;
color: white;
font-weight:normal;
font-size:16px;
}
header nav ul li a:hover {
color: #09b497;
text-shadow:2px 2px 2px #000;
}
/* NESTED MENU OPTIONS */
header nav ul li ul {
position:absolute;
float: left;
visibility: hidden;
top:40px;
height:auto;
border:2px solid #0a7c6c;
background-color:#FFF;
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
border-radius: 6px;
-moz-box-shadow: 0 0 10px #000;
-webkit-box-shadow: 0 0 10px #000;
box-shadow: 0 0 10px #000;
}
header nav ul li:hover ul {
visibility: visible;
}
header nav ul li ul li {
display:block;
height:30px;
float:left;
clear:left;
}
header nav ul ul li a{
padding: 0 12px;
line-height:30px;
text-align:left;
font-size:14px;
color:#0a7c6c;
}
header nav ul ul li a:hover{
color: #09b497;
text-shadow:none;
}