Page 1 of 1

weird page layout gaps

Posted: Tue 27. Apr 2004, 01:04
by gogoguerilla
Hey all. I've been working on this site for a bit but am using a Mac (Safari & Mozilla Firefox) and haven't had any problems with the page layout; however, when I launched the page on MS IE in Virtual PC, I had a problem:

Image

Notice the white gaps between the main (horizontal) content parts?

If you have MSIE on Windows, you can probably check the problem here: http://www.myhomegateway.com/index.php

I've made sure I strictly asign the table and row heights and have 0 on padding/margins; however, the problem persists.

Any thoughts :?:

Thanks.

Posted: Tue 27. Apr 2004, 08:40
by bertalizer
I think it's the way Internet Explorer handles whitespace in table cells...
Try cleaning up things like

Code: Select all

    <td align="right" valign="top" height="120">
<img src="picture/body_pics/1.gif" width="210" height="110" border="0" alt="1.gif" />
</td>
to

Code: Select all

    <td align="right" valign="top" height="120"><img src="picture/body_pics/1.gif" width="210" height="110" border="0" alt="1.gif" />
</td>
good luck :)
B.

Re:

Posted: Tue 27. Apr 2004, 19:42
by gogoguerilla
:D

Thanks! What a funny (sort-of stupic) MS IE thing to do! But I just reverted back to what we learned when learning html and consolidated my <td>'s into one row like you suggested and it worked.

I was getting worried.

Thanks a bunch :!: