Help with styles

  •  01-26-2007, 11:01 AM

    Help with styles

    This is the test html that I am adding to the CuteEditor in the HTML View.  Switching to "Preview" or "Normal" views does not display the styles defined.  Is there a flag that needs to be enabled for the Editor to use these styles?
     
    <html>
        <head>
            <script type="text/css">
             .foo{
                background-color:Blue;
             }
             .bar{
                color:Red;
             }
    </script>
        </head>
        <body class="foo">
            <p class=bar>Testing</p>
        </body>
    </html>
View Complete Thread