tags:

views:

16

answers:

2

What's the easiest way to set the font sizes for ALL telerik control to a single value? I believe you can control fonts by modifying the CC of a specific control, but that's a pain because I am using many different control types...

A: 

I don't know of any way to set the font size of all different telerik controls at once, but what you can do is create a theme and a skin file, where you can set the font size for each telerik control.

E.g. create a file app_themes/my_theme/telerik.skin and add a skin definition for each control to it:

<telerik:RadGrid runat="server" Font-Size="12px" />
<telerik:RadComboBox runat="server" Font-Size="12px" />
and so on...
M4N
A: 

You are most likely using one of the default skins.

You will have to go into the Skins directory of every different type of Telerik control you are using and adjust the font size in the Styles.css file.

Ed B