Forum Moderators: open
I've supplied a shortened version of the page below. Just continue the images in the table until it reaches more than the window size.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<HTML>
<HEAD>
<TITLE>Contact</TITLE>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" >
<link rel="stylesheet" type="text/css" href="base.css">
</HEAD>
<BODY>
<table>
<tr>
<td>
<img src="blah.jpg" alt = ""></td><td>Blah<br>President<p>(555) 555-5555<p><a href="mailto:blah@blah.com">blah@blah.com</a>
</td>
</tr>
</table>
</BODY>
</HTML>
Casey
Any guesses as to what I'm doing wrong?
Sure, but until you provide some more information--especially any relevant css--then you're only going to get guesses. The suggestions so far could all help, but none of them will really get to the root of the problem.
The first, and most obvious solution (if this is indeed an IE bug) would be to take the content of your sample out of the table (assuming also that the table only really has a single td as in your sample).
The next thing I'd suggest is to explicitly set the size of the table. In a frame, it may not be possible to set the size of the table using percentages (i.e. since I guess a size of e.g. 80% would be 80% of the size of the body element in the page containing the table, not of the frame in the frameset...)
-b
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
<HTML>
<HEAD>
<title></title>
</HEAD>
<frameset framespacing='0' frameborder='0' cols='240,*' marginheight = '0' marginwidth='0'>
<frame name=TOC src="toc.htm" marginwidth="0" marginheight="0">
<frameset rows="115,*" marginheight="0" marginwidth="0">
<frame name=TOP src="building.htm" marginwidth="0" marginheight="0">
<frameset rows="30,*">
<frame name=HEADER src="top.htm" marginheight="0" marginwidth="0">
<frame name=MAIN src="main.htm">
</frameset>
</HTML>
Casey
If you remove the url from the doctype, IE will revert to quirks mode and get the width calculation right for the page (I think).
For everyone's information ... it is by using a doctype (including the URL) that IE will get widths and heights right. Without either, IE goes into quirksmode and that's when it gets things all wrong.