Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
410
webdialog css problems in firefox
posted

Hello,

I'm seeing some strange behavior in FF 3 with the webdialog window 8.2.20082.1000.

I have a page that uses this control.  In IE it looks fine both on my development box and on my control test machine. 

In FF it looks okay on my development box (Windows Vista), but on my control test machine (Win2003), the styles are messed up. 

html source in FF before my control is displayed:


<td id=":1269613512.5:mkr:10" class="igdw_BodyEdgeLeft">&nbsp;</td>
<td id=":1269613512.6:mkr:11" class="igdw_BodyContentArea">
<div class="igdw_BodyContent" id=":1269613512.7:mkr:16" style="overflow:Hidden;width:100%;height:100%;">                                           

html source on my control machine in FF (using Firebug) after my control is displayed:


<td id=":1269613512.5:mkr:10" class="igdw_BodyEdgeLeft" mkr="10" style="margin: 0px;"> </td>
<td id=":1269613512.6:mkr:11" class="igdw_BodyContentArea" mkr="11" style="height: 203px; width: 218px;">

The 218px width here his much too small.

html source on my development machine in FF (using Firebug) after my control is displayed:

<td style="margin: 0px;" mkr="10" id=":1269613512.5:mkr:10" class="igdw_BodyEdgeLeft">&nbsp;</td><td style="height: 208px; width: 634px;" mkr="11" id=":1269613512.6:mkr:11" class="igdw_BodyContentArea"><div mkr="16" class="igdw_BodyContent" id=":1269613512.7:mkr:16" style="overflow: hidden; height: 208px;">

This is 634px, which is right.

html source in IE (using IE developer toolbar) after my control is displayed:

<TD style="MARGIN: 0px" id=:1269613512.5:mkr:10 class=igdw_BodyEdgeLeft mkr="10">&nbsp;</TD>
<TD style="WIDTH: 634px; HEIGHT: 205px" id=:1269613512.6:mkr:11 class=igdw_BodyContentArea mkr="11">
<DIV style="HEIGHT: 205px; OVERFLOW: hidden" id=:1269613512.7:mkr:16 class=igdw_BodyContent mkr="16">

The 634 px width is right.


I'm setting the height of my web dialog window in the javascript that displays it, but I'm not touching the width property.  Any  idea why Firefox is setting the width of the bodycontentarea to 218 on the control machine, but not the development machine?  The code is the same.

-Eric