I am using the ASP.NET AJAX 2009 Q1 version of the Rad Windows. I have a window using the Black Skin, but I would like to change the Forecolor of the Title in the window and I have been unsuccessful in doing it with the ForeColor property of the Window or the Window Manager. Is this possible?
Thanks!
Thanks!
4 Answers, 1 is accepted
0
Accepted
Shinu
Top achievements
Rank 2
answered on 03 Jun 2009, 11:16 AM
Hi Brad,
Try adding following CSS for changing the text color of RadWindow title.
CSS:
Thanks,
Shinu.
Try adding following CSS for changing the text color of RadWindow title.
CSS:
| <style type="text/css"> |
| div.RadWindow_Black .rwTitlebarControls em |
| { |
| color: red !important; |
| } |
| </style> |
Thanks,
Shinu.
0
Brad
Top achievements
Rank 1
answered on 03 Jun 2009, 01:03 PM
I've tried applying this CSS to the page with the windows and to the Telerik CSS located under program files. Neither had any effect on the window.
0
Hello Brad,
Actually, the code that Shinu gave you is working. As you can see on the test page I have attached to this message, it works like charm. In your details, I can see that you are using the latest version of RadControls - 2009.1 402, but if you are using a pre-Q1.2009 version, this fix will not work, because we have changed the naming conventions of the CSS classes. If you are with an older version of the controls, use FireBug or Internet Explorer Developer Toolbar to get the old CSS classes and change the CSS respectively.
Regards,
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.
Actually, the code that Shinu gave you is working. As you can see on the test page I have attached to this message, it works like charm. In your details, I can see that you are using the latest version of RadControls - 2009.1 402, but if you are using a pre-Q1.2009 version, this fix will not work, because we have changed the naming conventions of the CSS classes. If you are with an older version of the controls, use FireBug or Internet Explorer Developer Toolbar to get the old CSS classes and change the CSS respectively.
Regards,
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
Brad
Top achievements
Rank 1
answered on 04 Jun 2009, 02:59 PM
Yes, you're correct. I had an error in my CSS file that was keeping this from being applied. It works fine, Thanks!