Sorry I forgot a few things, remove the red part from your css:
Code:
* html .glossymenu li a{ /*IE only. Actual menu width minus left padding of A element (10px) */
width: 170px;
}
Then, to fix the IE6 whitespace bug, add a space after each link name, before the closing tag of the anchor:
Code:
<ul class="glossymenu">
<li><a href="http://www.djyves.net/Home.html">Home </a></li>
<li><a href="http://www.djyves.net/Biography.html">Biography </a></li>
<li><a href="http://www.djyves.net/Agenda.html">Agenda </a></li>
<li><a href="http://www.djyves.net/foto%27s" target="_blank">Pictures </a></li>
<li><a href="http://www.djyves.net/Music.html">Music </a></li>
<li><a href="http://www.djyves.net/Links.html">Links </a></li>
<li><a href="http://www.djyves.net/Guestbook.html">Guestbook </a></li>
<li><a href="http://www.djyves.net/Contact.html">Contact </a></li>
</ul>
I think that should do it.
Bookmarks