Here is what I have
ASPX Code
<
telerik:RadEditor ID="reBody" Runat="server" Width="900px"
ToolsFile="toolsfile.xml" OnClientCommandExecuting="OnClientCommandExecuting">
<Tools>
<telerik:EditorToolGroup >
<telerik:EditorTool Name="InsertOEMInterchange" Text="Insert OEM Interchange List" />
</telerik:EditorToolGroup>
</Tools>
<Content>
</
Content>
</
telerik:RadEditor>
The Icon Image is located at
/APP_Themes/Skins/Default/Editor/OEMInterchange.gif
I have tried placing this CSS code (and other variants!)
.rade_toolbar.Default
.InsertHollInterchange
{
background-image: url('Editor/OEMInterchange.gif')!important;
}
.rade_toolbar.Default .InsertOEMInterchange
{
background-image: url('Editor/OEMInterchange.gif')!important;
}
.reTool .InsertHollInterchange
{
background-image: url('Editor/OEMInterchange.gif')!important;
}
.reTool .InsertOEMInterchange
{
background-image: url('Editor/OEMInterchange.gif')!important;
}
in the Following CSS files
/App_Themes/Skins/Editor.css
/App_Themes/Skins/Default/Editor.css
The editor is set for the Default skin.
This is on a master / content page.
I also stuck this in the master and the content page.
<style type="text/css">
.reToolbar.Default.InsertOEMInterchange
{
background-image: url(../APP_Themes/Skins/Default/Editor/OEMInterchange.gif);
}
</style>
But no matter what I do I cannot get the icon to show up. I really need help! What am I doing wrong?
Thanks in advance.