weird page layout gaps

Get help with installation and running phpwcms here. Please do not post bug reports or feature requests here.
Post Reply
gogoguerilla
Posts: 29
Joined: Mon 12. Apr 2004, 01:22

weird page layout gaps

Post 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.
bertalizer
Posts: 47
Joined: Sat 21. Feb 2004, 14:24
Location: Belgium

Post 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.
gogoguerilla
Posts: 29
Joined: Mon 12. Apr 2004, 01:22

Re:

Post 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 :!:
Post Reply