Enabling External Style Sheet

  •  01-31-2007, 12:27 PM

    Enabling External Style Sheet

    I'm using version 5.2 and have the following code for rendering CuteEditor:
     
     Dim editor
     Set editor = New CuteEditor 'Create a new editor class object
     editor.ID = "Editor1" 'Set the ID of this editor class
     editor.Text = strNotes 'Set the initial HTML value of editor control
     editor.ImageGalleryPath = "/Uploads"
     editor.MaxImageSize = 50
     editor.AutoConfigure = "default"
     editor.DisableItemList = "Save"
     editor.EditorWysiwygModeCss  = "css/ows.css"
     editor.Width = 600
     editor.Height = 300
     editor.Draw()
     
    In the root of my web, I have the "CuteEditor_Files" folder. Inside of it, I created a "css" folder in which I put my css file (ows.css). However, the editor is not using it. I'm implementing exactly as the examples show. What am I missing?
     
    Thanks, Kris.
    Filed under: , ,
View Complete Thread