This is a migrated thread and some comments may be shown as answers.

Q2 2009 renders buttons with black text on IE6 and white text on IE7

2 Answers 38 Views
FormDecorator
This is a migrated thread and some comments may be shown as answers.
Jon
Top achievements
Rank 1
Jon asked on 09 Jul 2009, 07:18 PM
Hi All,

Normal formdecorator rendered buttons are showing with black text in IE6 and white text in IE7.  To get them to be consistant I want to use "color:white ! important" in the css.  What style is behind the scenes for the buttons (hovered and normal states)?

Regards,

Jon

2 Answers, 1 is accepted

Sort by
0
Accepted
Martin
Telerik team
answered on 10 Jul 2009, 06:02 AM

Hello Jon,

IE6 is hard to handle, and obviously some of the skins have problems with it. Basically, it should be done like this, by using the star hack for IE6:

*html .rfdSkinnedButton .rfdDecorated
{
 color: red !important;
}

*html .rfdSkinnedButton:hover .rfdDecorated
{
 color: lime !important;
}


Have a great weekend,

Martin Ivanov
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
0
Jon
Top achievements
Rank 1
answered on 10 Jul 2009, 07:15 AM
Hi Martin,

You're a star - all fixed now on that.  I haven't seen the star hack for a while now.  I must admit that I don't miss working on CSS so much now I use your controls.  I always found it a very fustrating thing with all the browser differences - these days it must be even worse!

Hope you have a great weekend too!

Regards,

Jon
Tags
FormDecorator
Asked by
Jon
Top achievements
Rank 1
Answers by
Martin
Telerik team
Jon
Top achievements
Rank 1
Share this question
or