Suzanne Goodwin wrote:
> hello all, and thanks in advance for any help you can offer me with this 
> problem. I'm developing a site at http://www.etcdevelopmentcorp.org, and 
> the menu in the left-hand column seems to work and display just fine in 
> IE7, Firefox, and Safari, but not in IE6. As you'll see, I am using Dean 
> Edwards' IE7 scripts for general IE6 behavior problems and a script that 
> I got here for the menu: http://tutorials.alsacreations.com/deroulant/. 
> I can't for the life of me figure out where the extra space below the 
> #menu ul li a is coming from in IE6 or how to get rid of it. Thanks 
> again for your help.


It's the list white space bug

among others, one fix is to delete all the white space including 
line-breaks in the html

was:
<li><a href="...">700 Harrison</a></li>
<li class="current"><a href="...">Burke Studios</a></li>
<li><a href="...">Neponset Field</a></li>

becomes

<li><a href="...">700 Harrison</a></li
 ><li class="current"><a href="...">Burke Studios</a></li
 ><li><a href="...">Neponset Field</a></li
 >

Ingo

-- 
http://www.satzansatz.de/css.html
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7 information -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to