Hello there, when I add a custom button it shows up for the default skin, but when I change my sking to WebBlue, it does not show up. Any ideas?
Herre is my style sheet: Default works, but WebBlue does not.
Herre is my style sheet: Default works, but WebBlue does not.
.rade_toolbar.Default .IESpell
{
background-image: url(http://www.telerik.com/DEMOS/ASPNET/RadControls/Editor/Skins/Default/buttons/CustomDialog.gif);
}
.rade_toolbar.WebBlue .IESpell
{
background-image: url(http://www.telerik.com/DEMOS/ASPNET/RadControls/Editor/Skins/Default/buttons/CustomDialog.gif);
}
This One WOrks:
<telerik:RadEditor ID="ContentBody" runat="server" ToolsFile="/Scripts/ToolsFile.xml" OnClientLoad="OnClientLoad" Width="700px" Height="345px">
</telerik:RadEditor>
This One Doesn't Work
<telerik:RadEditor ID="ContentBody" runat="server" ToolsFile="/Scripts/ToolsFile.xml" Skin="WebBlue" SkinID="WebBlue" OnClientLoad="OnClientLoad"
Width="700px" Height="345px">
</telerik:RadEditor>
