Rank: Newbie Groups: Member
Joined: 2/18/2009 Posts: 4
|
Upload file information overlaps other page controls on the screen, this issue seems to affect only IE8, I have tested IE6, IE7, and several FF versions and they seem to correctly render the
<asp:PlaceHolder ID="ProgressTextPlaceHolder" runat="server">Progress Text Place Holder </asp:PlaceHolder>
Is there any fix for this issue, or a patch to avoid this problem in IE8, thanks in advance for any tips or help.
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi, The easiest way is to place a DIV around the ProgressTextPlaceHolder and clip its size. It will be something like this:
Code: HTML/ASPX
<div style="width:200px;height:30px;overflow:hidden;">
<asp:PlaceHolder ID="ProgressTextPlaceHolder" runat="server">
</asp:PlaceHolder>
</div>
Note the explicit widht and height on the div and also "overflow:hidden" on the element. Thanks!
|