Re: CSS dropdown menu renders full screen

  •  04-23-2007, 1:56 PM

    Re: CSS dropdown menu renders full screen

    I can, but then I would have to deploy 6 to the live site, and I can do that right now. It is easy to reproduce. Please do the following:
     
    1) Create external css file with this definition inside it
     
    .ceTest {
     float:right;
    }
     
    2) Create your aspx file using the below code (IMPORTANT: note that the page uses the same external css definition as the control's EditorWysiwygModeCss property):
     
    <%@ Page Language="C#" AutoEventWireup="true" CodeFile="ceTest.aspx.cs" Inherits="ceTest" %>
    <%
    @ Register Assembly="CuteEditor" Namespace="CuteEditor" TagPrefix="CE" %>
     
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <head runat="server">
     
    <title>CeTest</title>

    <link href="ceTest.css" rel="stylesheet" type="text/css" />

    </head>

    <body>

    <form id="form1" runat="server">

    <div>

    <ce:editor id="Editor1" runat="server" EditorWysiwygModeCss="ceTest.css"></ce:editor>

     

    </div>

    </form>

    </body>

    </html>

View Complete Thread