Here's how it should look (as seen in firefox)

and here's it broken in IE6

and here's the code:
http://www.yourwords.ca/menu.txt
Can anyone help? I just can't figure out why IE is sticking in those dividers between graphics.
Show your support for Zikula! Sign up at Github account and watch the Core project!


You have some very sloppy code there. For starters, try removing all the cellpadding, cellspacing and other slop from the tr and td tags. It doesn't belong there and, off-hand, I can only guess that it might make IE freak out a bit. Those generally only belong in table tags.
Other tip for IE:
put all TD lines together, without line separations, if you have a line feed, IE take it as a BR,
& don't put any separation between TR
ex:
Code
<TR BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
<TD BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%> <IMG SRC="images/four.gif" BORDER=0 ALT="" USEMAP="#four_Map"><MAP NAME="four_Map"><AREA SHAPE="rect" ALT="submit your work" COORDS="11,5,136,27" HREF="submit.html" TARGET="main"></MAP></TD>
</TR>
<TR BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
<TD BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%> <IMG SRC="images/five.gif" BORDER=0 ALT="" USEMAP="#five_Map"><MAP NAME="five_Map"><AREA SHAPE="rect" ALT="volunteer with us" COORDS="18,10,123,39" HREF="volunteer.html" TARGET="main"></MAP></TD>
</TR>
edited by: gerkynet, Sep 26, 2006 - 01:19 AM
You may also want to improve the HTML by quoting parameters correctly:
Code
<td border="0" cellpadding="0" cellspacing="0" width="100%">
tr does not accept a width parameter...