CSS styles in edit area Iframe

  •  02-20-2008, 5:28 PM

    CSS styles in edit area Iframe

    I suspect that external styles surrounding the edit area iframe are not being inherited into that frame.
     
     
    (pseudo html)
    // style.css
    #mainpane h3 { color: red };
     
     <link href="~\style.css">
     <div ID="mainPane">
        <h3>Heading</h3>      // Appears in red as expected
        <CE:Editor Text="<h3>Heading</h3>" EditorWysiwygModeCss="~\style.css"></CE:Editor>  // h3 text appears in default black
    </div>
     
     
    Placing the surrounding <div> into Editor.Text (<div ID="mainPane"><h3>Heading</h3></div>) produces the correct result.
     
    Is there any way of making the iframe aware of the #mainpane region (progmatically) without changing the Editor.Text?
     
    TIA

     
     
     

View Complete Thread