Does not Insert Div, Can't Align to Center - Using Editor for CMS

  •  05-06-2009, 9:05 PM

    Does not Insert Div, Can't Align to Center - Using Editor for CMS

    I am using this editor for an important client and they are getting very frustrated because when they change a set of text to align to the center it is not reflected in the HTML and doesn't save. This is really frustrating I have been trying to fix it for an hour.
     <?
                  $editor=new CuteEditor();
                  $editor->ID="PageText";
                  $editor->Text="$PageText";
                  $editor->FilesPath="CuteEditor_Files";
                  $editor->ResizeMode="ResizeCorner";
                  $editor->RemoveTBODYTag=true;
                  $editor->XHTMLOutput=true;
                  $editor->BreakElement="Br";
                  $editor->Height=550;
                  $editor->Width=686;
                  $editor->AutoConfigure="Simple";
                  $editor->Draw();
                  $editor=null;
    ?>
     
    I found out this is only happening when I use the
                  $editor->XHTMLOutput=true;
    attribute. I took it out for the time being but it's an XHTML site.
View Complete Thread