<telerik:RadEditor ToolbarMode="Default"
ID="editor1" runat="server" EnableEmbeddedBaseStylesheet="true">
</telerik:RadEditor>
The editor using the default skin. When I made changes to the Editor.Default.CSS file, they did not appear on my page, but when I type the following, I see the changes:
<link href="Skins/Default/Editor.Default.css" rel="stylesheet" type="text/css" />
<link href="Skins/Default/Window.Default.css" rel="stylesheet" type="text/css" />
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<telerik:RadEditor ToolbarMode="Default"
ID="editor1" Skin="Default" runat="server" EnableEmbeddedSkins="true">
</telerik:RadEditor>
Do I need to create a custom Skin file to reflect the changes? I don’t want to, because the editor was used in many files, and now linking a new custom CSS file in each .aspx file will be such a pain. I just want this to be added to Skin:
body
{
background-image:none;
background-color:White;
}
, . background-image . , Font , Heading 2 Editor , , .
CSS ? CSS ? . ?