tables "explode" in IE
Vitus
- html
Hey folks,
i have a problem when i develop a mombo template. it's not really a mambo-problem but more a internet explorer problem or better speaking a problem with my table definition. maybe some of you had a similar problem and can help me.
somehow the table holding my images for the template "explode"
the weird thing is that firefox shows it perfextly correct.
I saw that a few people here have a similar problem but i couldn't find a solution
it would be really great if someone could help me.
thanks,
vitus
firefox:
[IMG]http://duslan.du.funpic.de/firefox.jpg[/IMG]
and that's how it looks in the IE:
[IMG]http://duslan.du.funpic.de/internet_explorer2.jpg[/IMG]
[IMG]http://duslan.du.funpic.de/internet_explorer1.jpg[/IMG]
here is how i definded my table:
[CODE]<TABLE WIDTH=760 BORDER=0 CELLPADDING=0 CELLSPACING=0>
<TR>
<TD width="139" height="108" background="<?php echo $mosConfig_live_site;?>/templates/sloasp_template/images/header_left.gif">
</TD>
<TD width="8" height="108" background="<?php echo $mosConfig_live_site;?>/templates/sloasp_template/images/header_middle.gif">
</TD>
<TD width="*" height="108" background="<?php echo $mosConfig_live_site;?>/templates/sloasp_template/images/header_right.gif">
</TD>
</TR>
<TR>
<TD WIDTH="139" HEIGHT="28" background="<?php echo $mosConfig_live_site;?>/templates/sloasp_template/images/website1.3_04.gif">
</TD>
<TD WIDTH="8" HEIGHT="28" background="<?php echo $mosConfig_live_site;?>/templates/sloasp_template/images/website1.3_05.gif">
</TD>
<TD WIDTH=613 HEIGHT=28 bgcolor="#E2E5E9">
<?php include "pathway.php"; ?></TD>
</TR>
<TR>
<TD background="<?php echo $mosConfig_live_site;?>/templates/sloasp_template/images/website1.3_07.gif" WIDTH=139 HEIGHT=73>
</TD>
<TD ROWSPAN=5 background="<?php echo $mosConfig_live_site;?>/templates/sloasp_template/images/website1.3_08.gif" WIDTH=8 HEIGHT=411>
</TD>
<TD ROWSPAN=5 valign="top" class="content">
<!-- <TD ROWSPAN=5 valign="top" background="<?php echo $mosConfig_live_site;?>/templates/sloasp_template/images/website1.3_09.gif" class="content"> -->
<?php include_once ("mainbody.php"); ?>
</TD>
</TR>
<TR>
<TD background="<?php echo $mosConfig_live_site;?>/templates/sloasp_template/images/website1.3_10.gif" WIDTH=139 HEIGHT=9>
</TD>
</TR>
<TR>
<TD background="<?php echo $mosConfig_live_site;?>/templates/sloasp_template/images/website1.3_11.gif" WIDTH=139 HEIGHT=8>
</TD>
</TR>
<TR>
<TD WIDTH=139 HEIGHT=* valign="top" background="<?php echo $mosConfig_live_site;?>/templates/sloasp_template/images/website1.3_12.gif">
<?php mosLoadModules ( 'left' ); ?>
<?php mosLoadModules ( 'user1' ); ?>
</TD>
</TR>
<TR>
<TD bgcolor="#E2E5E9"> </TD>
</TR>
<TR>
<TD COLSPAN=3 background="<?php echo $mosConfig_live_site;?>/templates/sloasp_template/images/website1.3_14.gif" WIDTH=760 HEIGHT=53>
</TD>
</TR>
</TABLE>
[/CODE]