Internet explorer VS firefox and safari

Get help with installation and running phpwcms here. Please do not post bug reports or feature requests here.
Post Reply
ancerick
Posts: 26
Joined: Wed 14. Jun 2006, 16:00

Internet explorer VS firefox and safari

Post by ancerick »

so.. im working on my first site ( http://www.ecwador.ee/phpwcms/index.php?id=1,1,0,0,1,0 )

but i have a problem .. if im looking through firefox (on mac OR windows) or safari (mac stuff) the site is ok..

but with IE the site makes one extra row on top of the tables that i have made rounded corners in (for example the content, and left right part)... im waay too dumb to figure out whats going on so pleaze help :(
User avatar
DeXXus
Posts: 2168
Joined: Fri 28. Nov 2003, 06:20
Location: USA - Florida

Post by DeXXus »

This is the problem:

Code: Select all

<tr height="214">
<td valign="top" height="215">
<h4>Sed ut <br /> perspiciatis</h4>
Needs to be:

Code: Select all

<tr height="215">
<td valign="top" height="215">
Also don't understand the "logic" of widths LARGER than their containing elements?
(EVEN though it renders OK):
<table border="0" cellspacing="0" cellpadding="0" width="760" align="center">
<tr>
<td valign="top"></td>
<td valign="top" width="538"><table width="910" border="0" cellspacing="0" cellpadding="0">
<table width="64" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><img src="http://www.ecwador.ee/phpwcms/lay/righttop.jpg" width="284" height="10" alt="" /></td>
</tr>
<tr height="215">
<td valign="top" height="215">
<h4>Sed ut <br /> perspiciatis</h4><div class="articleText">unde omnis iste natus error sit</div></td>
</tr>
<tr>
<td><img src="http://www.ecwador.ee/phpwcms/lay/rightbottom.jpg" width="284" height="10" alt="" /></td>
</tr>
</table>
<table width="64" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><img src="http://www.ecwador.ee/phpwcms/lay/contenttop.jpg" width="223" height="15" alt="" /></td>
</tr>
<tr height="239">
<td valign="top" height="239"><font color="white"><a name="jump1"></a><h1>Sed ut <br /> perspiciatis</h1><div class="articleText">1 omfg pwned by <br />
2 omfg pwned by</div></td>
</tr>
<tr>
<td><img src="http://www.ecwador.ee/phpwcms/lay/contentbottom.jpg" width="223" height="15" alt="" /></td>
</tr>
</table>
ancerick
Posts: 26
Joined: Wed 14. Jun 2006, 16:00

Post by ancerick »

for tables i guess its just something about Adobe Golive ... and whats left in there .. since i suck ass with programming i use that programm alot to make web.:wink:

i dont realy care if the script has logic aslong as it works :lol: :lol:

BUT HUGE THNX for the reply on how to eliminate that problem with IE im verry thankfull :D :D
Kulinarisk
Posts: 73
Joined: Tue 15. Jun 2004, 01:06
Location: Denmark
Contact:

Post by Kulinarisk »

Forget IE! There is a new version around the corner (7.0). Can be downloaded if you pass the Genuine Windoze Advantage (wording a bit to Orwellian for me). It should be more in tune with standards - so they say. People using Mac have given up on IE years ago.
User avatar
DeXXus
Posts: 2168
Joined: Fri 28. Nov 2003, 06:20
Location: USA - Florida

Post by DeXXus »

IE 7.0 will display it wrong ALSO! :wink:
Because it's not a standards problem...per se
--> just that firefox "ignores" IE proprietary attribute named "height" for <TR>.
Kulinarisk
Posts: 73
Joined: Tue 15. Jun 2004, 01:06
Location: Denmark
Contact:

Post by Kulinarisk »

I would love to try IE 7.0 for development. But since, in essence it's not free, I'll just let Microsoft wander the lonely road of non standard browsers.
Don't let the door hit you on the way out :D
Post Reply