Re: Problem with collapse of content height in IE when clicking HTML or Preview buttons

  •  03-25-2009, 4:58 PM

    Re: Problem with collapse of content height in IE when clicking HTML or Preview buttons

    Problem resolved, posting here for others in case anyone else runs into this issue.  It had nothing to do with the stylesheet.  
    I had to change from using a percent for the height to use a fixed pixel height in the <div>.

    Changed:

    <div id="editorsCuteEdit" runat="server">
    <CE:Editor ID="cuteEdit" visible="false" runat="server" ThemeType="Office2007"
    AutoConfigure="Full" Height="80%" Width="100%">
    <FrameStyle BackColor="White" BorderColor="#DDDDDD" BorderStyle="Solid"
    BorderWidth="1px"
    CssClass="CuteEditorFrame" Height="80%" Width="100%" />
    <TextAreaStyle Height="80%" Width="100%" />
    </CE:Editor>
    </div>

    To:

    <div id="editorsCuteEdit" runat="server">
    <CE:Editor ID="cuteEdit" visible="false" runat="server" ThemeType="Office2007"
    AutoConfigure="Full" Height="400px" Width="100%">
    <FrameStyle BackColor="White" BorderColor="#DDDDDD" BorderStyle="Solid"
    BorderWidth="1px"
    CssClass="CuteEditorFrame" Height="400px" Width="100%" />
    <TextAreaStyle Height="400px" Width="100%" />
    </CE:Editor>
    </div>

View Complete Thread