Editor Not Rendering Inline Styles

  •  10-16-2006, 2:28 PM

    Editor Not Rendering Inline Styles

    In version 5.0, cute editor would automatically utilize inline styles and display the content correctly in the editor.
     
    Now, in version 5.3 it just ignores the inline styles and does not use them to render the content.
     
    What must I do to have it recognize the styles?  I don't care about placing them in drop-down menus and I don't wish to have to parse the file myself as it worked great in 5.0.  I just want the editor to use the inline styles so that the content displays correctly.
     
    Here is an example which should simply display a grey background...
     
     
     
    <html>
    <head>
    <meta http-equiv="Content-Language" content="en-us">
    <title>Test</title>
    <meta http-equiv=Content-Type content="text/html; charset=windows-1252">
    <style type=text/css>
          <!--
    BODY
    {
    BACKGROUND-COLOR: #808080;
    FONT-FAMILY: Arial,Verdana, Helvetica, sans-serif;
    FONT-SIZE: .8em;
    FONT-WEIGHT: normal;
    LETTER-SPACING: normal;
    TEXT-TRANSFORM: none;
    }
    -->
        </style>
    </head>
    <body>
    <p>test</p>
    </body>
    </html>
View Complete Thread