Forum Moderators: open
Maybe if you could post a short snippet of the code around the area of these two rows we may be able to figure out the problem!
Have you tried validating [validator.w3.org] your page? This can catch any little error that may be the cause of this. Also, on IE line breaks can sometimes cause white space on pixel perfect layouts - another one to watch.
HTH
my first error and the error explaination:
Line 39, column 155: there is no attribute "ALLOWTRANSPARENCY"
...0" marginwidth="0" allowtransparency="true" width="576"></IFRAME>
"You have used the attribute named above in your document, but the document type you are using does not support that attribute for this element. This error is often caused by incorrect use of the "Strict" document type with a document that uses frames (e.g. you must use the "Transitional" document type to get the "target" attribute), or by using vendor proprietary extensions such as "marginheight" (this is usually fixed by using CSS to achieve the desired effect instead).
This error may also result if the element itself is not supported in the document type you are using, as an undefined element will have no supported attributes; in this case, see the element-undefined error message for further information."
"How to fix: check the spelling and case of the element and attribute, (Remember XHTML is all lower-case) and/or check that they are both allowed in the chosen document type, and/or use CSS instead of this attribute."
My 2nd on down to the 13th is the same error. which i find odd because Dreamweaver wrote the code when i drew out the hotspots. So how is this an error if the program itself generated it? Here's the error:
Line 60, column 86: required attribute "ALT" not specified
...weddings/weddings.swf" target="flash">
"The attribute given above is required for an element that you've used, but you have omitted it. For instance, in most HTML and XHTML document types the "type" attribute is required on the "script" element and the "alt" attribute is required for the "img" element."
and this same error is listed for error #3 to the last one.
<body>
<table width="980" border="0" align="center" cellpadding="0" cellspacing="0">
<!-- fwtable fwsrc="980.png" fwbase="index.jpg" fwstyle="Dreamweaver" fwdocid = "1339021709" fwnested="0" -->
<tr>
<td><img src="spacer.gif" width="5" height="1" border="0" alt=""></td>
<td><img src="spacer.gif" width="195" height="1" border="0" alt=""></td>
<td><img src="spacer.gif" width="579" height="1" border="0" alt=""></td>
<td><img src="spacer.gif" width="196" height="1" border="0" alt=""></td>
<td><img src="spacer.gif" width="5" height="1" border="0" alt=""></td>
<td><img src="spacer.gif" width="1" height="1" border="0" alt=""></td>
</tr>
<tr>
<td colspan="5"><img name="index_r1_c1" src="index_r1_c1.jpg" width="980" height="120" border="0" alt=""></td>
<td><img src="spacer.gif" width="1" height="120" border="0" alt=""></td>
</tr>
<tr>
<td rowspan="2" colspan="2"><img src="index_r2_c1.jpg" alt="" name="index_r2_c1" width="200" height="441" border="0" usemap="#index_r2_c1Map"></td>
<td valign="top" bgcolor="#393D49"><div align="center">
<IFRAME name="target" src="welcome.htm" height=432 scrolling="no" frameborder=0 align="middle" marginheight="0" marginwidth="0" allowtransparency="true" width="576"></IFRAME>
</div></td>
<td rowspan="2" colspan="2"><img name="index_r2_c4" src="index_r2_c4.jpg" width="201" height="441" border="0" alt=""></td>
<td><img src="spacer.gif" width="1" height="431" border="0" alt=""></td>
</tr>
<tr>
<td><img name="index_r3_c3" src="index_r3_c3.jpg" width="579" height="10" border="0" alt=""></td>
<td><img src="spacer.gif" width="1" height="10" border="0" alt=""></td>
</tr>
<tr>
<td rowspan="2"><img name="index_r4_c1" src="index_r4_c1.jpg" width="5" height="239" border="0" alt=""></td>
<td height="120" colspan="3" bgcolor="#393D49"><iframe name="flash" src="container.asp" height=120 scrolling = no width =966 frameborder=0></iframe></td>
<td rowspan="2"><img name="index_r4_c5" src="index_r4_c5.jpg" width="5" height="239" border="0" alt=""></td>
<td><img src="spacer.gif" width="1" height="144" border="0" alt=""></td>
</tr>
<tr>
<td colspan="3"><img src="index_r5_c2.jpg" alt="" name="index_r5_c2" width="970" height="95" border="0" usemap="#index_r5_c2Map"></td>
<td><img src="spacer.gif" width="1" height="95" border="0" alt=""></td>
</tr>
</table>
<map name="index_r2_c1Map">
<area shape="rect" coords="4,36,194,110" href="weddings/weddings.swf" target="flash">
<area shape="rect" coords="4,111,193,183" href="portraits/portraits.swf" target="flash">
<area shape="rect" coords="4,186,195,257" href="bridal/bridal.swf" target="flash">
<area shape="rect" coords="4,259,194,330" href="commercial/commercial.swf" target="flash">
<area shape="rect" coords="3,333,194,408" href="specialevents/specialevents.swf" target="flash">
</map>
<map name="index_r5_c2Map">
<area shape="rect" coords="250,18,337,51" href="http://www.example1.com" target="_blank"/>
<area shape="rect" coords="340,19,470,51" href="http://www.example2.com" target="_blank">
<area shape="rect" coords="473,19,597,51" href="http://www.example3.com" target="_blank">
<area shape="rect" coords="599,19,721,51" href="http://www.example4.com" target="_blank">
<area shape="rect" coords="724,18,861,51" href="http://www.example5.com" target="_blank">
<area shape="rect" coords="864,19,964,51" href="http://www.example6.com" target="_blank">
</map>
</body>
</html>
[edited by: tedster at 12:05 am (utc) on Nov. 5, 2004]
alt attribute, then it's not that which is cousing the problem. To fix most of those errors anyway, if you see the 11 lines which all look something like:
<area shape="rect" coords="4,36,194,110" href="weddings/weddings.swf" target="flash"> You just need to add the
alt attribute: <area shape="rect" coords="4,36,194,110" href="weddings/weddings.swf" [b]alt=""[/b] target="flash"> Are you still getting the gap? Is it between two particular rows, or all of them?
<tr>
<td rowspan="2" colspan="2"><img src="index_r2_c1.jpg" alt="" name="index_r2_c1" width="200" height="441" border="0" usemap="#index_r2_c1Map"></td>
<td valign="top" bgcolor="#393D49"><div align="center">
<IFRAME name="target" src="welcome.htm" height=432 scrolling="no" frameborder=0 align="middle" marginheight="0" marginwidth="0" allowtransparency="true" width="576"></IFRAME>
</div></td>
<td rowspan="2" colspan="2"><img name="index_r2_c4" src="index_r2_c4.jpg" width="201" height="441" border="0" alt=""></td>
<td><img src="spacer.gif" width="1" height="431" border="0" alt=""></td>
</tr>
AND THE ROW BELOW IT:
<tr>
<td rowspan="2"><img name="index_r4_c1" src="index_r4_c1.jpg" width="5" height="239" border="0" alt=""></td>
<td height="120" colspan="3" bgcolor="#393D49"><iframe name="flash" src="container.asp" height=120 scrolling = no width =966 frameborder=0></iframe></td>
<td rowspan="2"><img name="index_r4_c5" src="index_r4_c5.jpg" width="5" height="239" border="0" alt=""></td>
<td><img src="spacer.gif" width="1" height="144" border="0" alt=""></td>
</tr>
Check here:
[webmasterworld.com...]