I'm trying to develop a new site using 1.3.7 to replace a live site running under 1.2.6. I've been struggling with the CSS Flyout on my development site at http://www.dancewell.com/test/shop/ although it now seems OK with IE7, FireFox & Slimbrowser.

I just can't get it right with IE6. The problem I have is that part of the Flyout sits underneath the main category rather than on top. I've used info from a number off threads to get to this stage and think it relates to having a z-index value within the CSS file but just can't seem to work it out. If anyone can suggest where. My amended CSS file is as follows:

body { behavior: url(includes/csshover.htc);} /* WinIE behavior call */
div#nav-cat {width: 140px; margin: 1px 0 0 1px;
background-color: #CCCCCC; font-weight:bold;}
div#nav-cat ul {margin: 0; padding: 0; width: 140px; background-color: #FFFFFF;
/* border: 1px solid #AAA;*/}
div#nav-cat ul.level2 {background-color: #999999;}
div#nav-cat ul.level3 {background-color: #999999;}
div#nav-cat ul.level4 {background-color: #999999;}
div#nav-cat ul.level5 {background-color: #FFFFFF;}
div#nav-cat ul.level6 {background-color: #FFFFFF;}
div#nav-cat li {position: relative; list-style: none; margin: 0;
margin-top: 1px; /* change it to whatever space you want to put space between buttons*/
border-bottom: 1px solid #CCC; /* <---this line may help or hinder IE menu shifting issues */
}
div#nav-cat li li {
margin: 0; /* this overrides the margin-top in the declaration above */
}
div#nav-cat li:hover {background-color: #CCCCCC;}
div#nav-cat li.submenu {
background: url(../images/submenu.gif) 90% 50% no-repeat;
background-color: #FFFFFF;}
div#nav-cat li.submenu:hover {background-color: #CCCCCC;}
div#nav-cat li a {display: block; padding: 0.25em 0 0.25em 0.5em;
text-decoration: none; width: 140px; color: black;}
/*border-left: 0.5em solid #BBB;}
div#nav li a:hover {border-left-color: red;}*/
div#nav-cat>ul a {width: auto;}
div#nav-cat ul ul {position: absolute; top: 0; left: 140px;
display: none;}
div#nav-cat ul.level1 li.submenu:hover ul.level2,
div#nav-cat ul.level2 li.submenu:hover ul.level3,
div#nav-cat ul.level3 li.submenu:hover ul.level4,
div#nav-cat ul.level4 li.submenu:hover ul.level5,
div#nav-cat ul.level5 li.submenu:hover ul.level6 {display:block;}


In addition, I have Column Width & Column Width Left Boxes set to 170px.

I was also hoping to disable a link on the Main Catrgory forcing visitors to have to use the Flyout to navigate.

Any help would be greatly appreciated.