
Originally Posted by
ghostcorps
Hello again
I have almost finished my personalizations. But, have found a couple more sticking points.
I have adjusted the drop down menu so that the buttons are evenly spread across the Drop Menu, and each drop-down list is the same width as the parent. But, now there seems to be a space between the parent and child, enough to close the menu unless I am super quick. I used to know this stuff from years ago when the flyout menu contribution was still quite new, but I can't remember what to look for and none of my fiddling is fixing the problem.
www.fleshmetal.com.au/137
Thanks :)
You're not thinking about the problem enough.
Ok, first of all, your menu is a little too wide, in IE (at least IE7) the shopping cart drops down.
The reason your having issues is your widths don't match:
Code:
div#dropMenu ul ul {position: absolute; width: 11.7em;display: none;}
div#dropMenu ul ul li {border-bottom: 1px solid #CCC; width:11em;}
change the second one to match the first one.
Then you need to make your padding match:
Code:
div#dropMenu li a {display: block; padding: .6em 0.3em .6em 0.3em;text-decoration: none; text-transform:uppercase; color:#ffffff; text-align:center;}
div#dropMenu ul.level2 a {padding: 0.5em 0 0.5em 0.25em;color: white; text-transform:none;} /* this is text color on drop-down submenu */