I am having problems (again) to set the width of cute editor. When I set it in the form, there is no reaction on any change of the width. This is the code
'------------Beginn Texteditorfeld----------------
Dim editor
Set editor = New CuteEditor
editor.ID = "detail"
editor.Text = objRS.Fields("detail")
editor.FilesPath = "/cute_editor_6"
editor.EditorWysiwygModeCss = "../styles/main_style.asp"
editor.ConfigurationPath = "/cute_editor/Configuration/kreartiv.config"
'editor.ConfigurationPath = "/cute_editor/Configuration/einfach.config"
'editor.ImageGalleryPath = "/Uploads"
'editor.MaxImageSize = 50
'editor.AutoConfigure = "Simple"
'editor.Template= "Bold,Italic,Underline"
'editor.ThemeType = "Office2007"
editor.CustomCulture = "de-de"
editor.EditorOnPaste = "PasteCleanHTML"
'editor.AllowPasteHtml = False
editor.BreakElement = "p"
editor.FullPage = true
editor.Width = 750
editor.Height = 300
editor.Draw()
'------------Ende Texteditorfeld----------------
I am using various divs in the style sheet of the html page that finally displays the input. So there may be an override done.
Can anyone help to set the correct with. Which other parameters control the width. Where can I start?
Thanks for any help.
Volker Gottwald