I'm experiencing an issue with Telerik RadEditor specifically in IE (not Firefox, Chrome, or Safari). It seems like there may be a conflicting css style causing the problem, but I'm not sure which one it is even after deleting several styles. I have also attempted to add a ContentEditorArea.css file.
Here is how RadEditor displays in IE8 (similarly in IE7) :
EDIT:
After further investigation, I am unsure if the issue is related to a css conflict. Here is the Asp.net page:
<telerik:radeditor runat="server" ID="DetailsPratiques"
ToolsFile="~/App_Data/RadEditLite.xml"
SkinID="DefaultSetOfTools"
width="95%"
Height="300px">
<CssFiles>
<telerik:EditorCssFile Value="~/view/assets/EditorContentArea.css" />
</CssFiles>
<Tools>
<telerik:EditorToolGroup>
<telerik:EditorDropDown Name="TranslateTool" Text="<img src='/view/assets/flags/fr.png' alt=''/> Translation Tool"
Width="130px" ItemsPerRow="1" PopUpWidth="120px" PopUpHeight="260px">
<telerik:EditorDropDownItem Name="<img src='/view/assets/flags/fr.png' alt=''/> French" Value="fr" />
<telerik:EditorDropDownItem Name="<img src='/view/assets/flags/en.png' alt=''/> English" Value="en" />
<telerik:EditorDropDownItem Name="<img src='/view/assets/flags/es.png' alt=''/> Spanish" Value="es" />
<telerik:EditorDropDownItem Name="<img src='/view/assets/flags/de.png' alt=''/> German" Value="de" />
<telerik:EditorDropDownItem Name="<img src='/view/assets/flags/it.png' alt=''/> Italian" Value="it" />
<telerik:EditorDropDownItem Name="<img src='/view/assets/flags/ru.png' alt=''/> Russian" Value="ru" />
...
This snippet of code is contained within an ajax accordion:
<ajaxToolkit:Accordion
ID="accordion1" runat="server"
FadeTransitions="false" FramesPerSecond="100" TransitionDuration="50"
CssClass="jqtheme" HeaderCssClass="header" ContentCssClass=""
RequireOpenedPane="True" AutoSize="None">
<Panes>
<ajaxToolkit:AccordionPane ID="panier" runat="server">
<Header>
<div>
<li>Informations principales</li>
</div>
</Header>
<Content>
Note that this particular pane is currently closed.
(I appreciate any assistance provided and apologize for any inconvenience caused by my inquiry)