I\'m using the IE web developer toolbar to troubleshoot an issue. A blank white space is appearing below a list item, and I can\'t logically figure out why. Using the web dev
this may have to do with the "has layout", your zoom: 1 may work, also try one of these:
li { display: block; }
li { width: auto; }
li { width: 100%; }
you may have to counter act these with a display: inline, or float: left if your trying to get the list to show up as a horizontal menu.
hope that helps