I am trying to use an external css to design my editor. In my cs I use this code to inject the css -
private void Page_PreRender(object sender, EventArgs e)
{
foreach (RadEditor editor in Utility.FindControlsRecursiveByType<RadEditor>(Page))
editor.CssFiles.Add("~/CSS/HelpEditor.css");
}
My editor code is this -
<tlrk:RadEditor ID="D0_RadArticle" runat ="server" Width="650px" ToolsFile="~/XML/Editor/HelpEditor.xml"
StripAbsoluteImagesPaths="true">
<ImageManager ViewPaths="~/Images" />
</tlrk:RadEditor>
This works perfectly in IE browsers ( I tested IE7 and up) and in chrome too. I cannot see the css in firefox alone. My version is 21.0.
I have also attached screen shot to show how it looks in Firefox and chrome. Can you please tell me what I might be missing.
Thanks,
Kalyani
private void Page_PreRender(object sender, EventArgs e)
{
foreach (RadEditor editor in Utility.FindControlsRecursiveByType<RadEditor>(Page))
editor.CssFiles.Add("~/CSS/HelpEditor.css");
}
My editor code is this -
<tlrk:RadEditor ID="D0_RadArticle" runat ="server" Width="650px" ToolsFile="~/XML/Editor/HelpEditor.xml"
StripAbsoluteImagesPaths="true">
<ImageManager ViewPaths="~/Images" />
</tlrk:RadEditor>
This works perfectly in IE browsers ( I tested IE7 and up) and in chrome too. I cannot see the css in firefox alone. My version is 21.0.
I have also attached screen shot to show how it looks in Firefox and chrome. Can you please tell me what I might be missing.
Thanks,
Kalyani