Hi All,
I am currently integrating the RadEditor Prometheus into my app and I have run into one problem, in IE the text that reads the font size or font name (and all the text on all other dropdowns) is too small. A CSS check has it coming up as 1px, but when I hover over it it switches to 11px. It appears the non-hover text is using a wrapper CSS class, despite the fact that the non-hover version of the class is defined just fine in the CSS file. In Firefox the text size is fine at 11px, with or without hover.
Has anyone else encountered this or know of a workaround?
Thanks,
Chris
I am currently integrating the RadEditor Prometheus into my app and I have run into one problem, in IE the text that reads the font size or font name (and all the text on all other dropdowns) is too small. A CSS check has it coming up as 1px, but when I hover over it it switches to 11px. It appears the non-hover text is using a wrapper CSS class, despite the fact that the non-hover version of the class is defined just fine in the CSS file. In Firefox the text size is fine at 11px, with or without hover.
Has anyone else encountered this or know of a workaround?
Thanks,
Chris
6 Answers, 1 is accepted
0
Hi Chris,
The problem is most likely due to some global css class that is overriding the editor's dropdown header text. Please, review your css classes and see which one is causing the problem.
If you are not able to solve the problem, please open a support ticket and send a sample runnable project along wih the css classes that demonstrates the problem. I will examine it and try to provide a solution soon.
Best regards,
Rumen
the Telerik team
Instantly find answers to your questions at the new Telerik Support Center
The problem is most likely due to some global css class that is overriding the editor's dropdown header text. Please, review your css classes and see which one is causing the problem.
If you are not able to solve the problem, please open a support ticket and send a sample runnable project along wih the css classes that demonstrates the problem. I will examine it and try to provide a solution soon.
Best regards,
Rumen
the Telerik team
Instantly find answers to your questions at the new Telerik Support Center
0
Ben
Top achievements
Rank 1
answered on 07 Jul 2008, 07:29 PM
I am seeing the same Issue, in Firefox the Font Name header displays the correct size but in IE 7 it is only 5px wide. Sometimes on first time into the page IE will display it correctly but when you hover over, it shrinks back to the 5px width. I have tried removing my CSS file so nothing can be interfering with the RadEditor.
Was this issue resolved or is this a bug.
Was this issue resolved or is this a bug.
0
Hi Ben,
Could you please put the following class in the page with RadEditor for ASP.NET AJAX
<style>
.rade_dropdown
{
width: 70px !important;
font-size: 10px !important;
}
</style>
and see whether you are still experiencing this problem.
If the problem still persists, please open a support ticket and send a sample runnable project that demonstrates the issue.
Best regards,
Rumen
the Telerik team
Instantly find answers to your questions at the new Telerik Support Center
Could you please put the following class in the page with RadEditor for ASP.NET AJAX
<style>
.rade_dropdown
{
width: 70px !important;
font-size: 10px !important;
}
</style>
and see whether you are still experiencing this problem.
If the problem still persists, please open a support ticket and send a sample runnable project that demonstrates the issue.
Best regards,
Rumen
the Telerik team
Instantly find answers to your questions at the new Telerik Support Center
0
Ben
Top achievements
Rank 1
answered on 09 Jul 2008, 06:29 PM
That fixed the problem but it has a strange side affect.
Now even though the drop down box is more than big enough, the size drop down text shows up as "S...". But the font name drop down shows up fine, it says "Font Name"
Now even though the drop down box is more than big enough, the size drop down text shows up as "S...". But the font name drop down shows up fine, it says "Font Name"
0
Hi Ben,
Could you please, tell us whether the editor is initially invisible and after that loaded / displayed with Ajax? If this is your scenario, my suggestion is to upgrade to the latest version of Telerik.Web.UI.dll in which the problem should be fixed.
If the problem, still persists, please open a support ticket and send a sample working project that demonstrates the issue. We will examine the project and try to provide a solution.
Best regards,
Rumen
the Telerik team
Instantly find answers to your questions at the new Telerik Support Center
Could you please, tell us whether the editor is initially invisible and after that loaded / displayed with Ajax? If this is your scenario, my suggestion is to upgrade to the latest version of Telerik.Web.UI.dll in which the problem should be fixed.
If the problem, still persists, please open a support ticket and send a sample working project that demonstrates the issue. We will examine the project and try to provide a solution.
Best regards,
Rumen
the Telerik team
Instantly find answers to your questions at the new Telerik Support Center
0
Gregory Butt
Top achievements
Rank 1
answered on 06 Oct 2009, 11:23 PM
I am using Prometheus 2007 Q3 SP2 and the following fixed a similar issue I was experiencing:
<
style>
.rade_dropdown
{
width: auto !important;
}
.rade_dropdown span
{
line-height: 13px !important;
text-align: left;
}
</
style>
