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

How to changed font all telerik control ?

1 Answer 89 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
Oliver
Top achievements
Rank 1
Oliver asked on 17 Jul 2010, 02:46 PM
i want changing fonts all telerik control (Grid Items, Grid Header, Combobox Item, ....) in my project  to "Tahoma".
i can?

1 Answer, 1 is accepted

Sort by
0
Accepted
Shinu
Top achievements
Rank 2
answered on 19 Jul 2010, 06:35 AM
Hello Oliver,


Since the embedded skins are applied per control, you need to change the css class for each AJAX control in your application to change the font.

For example, use the following css for grid control to change the font-family.
<style type="text/css">
        .RadGrid, .RadGrid 
        .rgMasterTable, 
        .RadGrid .rgDetailTable, 
        .RadGrid .rgGroupPanel table, 
        .RadGrid .rgCommandRow table, 
        .RadGrid .rgEditForm table, 
        .RadGrid .rgPager table, 
        .GridToolTip
        {
            font-family: Tahoma !important;
        }
</style>

Here is the forum which discusses about same: Overriding Fonts for All Controls

-Shinu.
Tags
General Discussions
Asked by
Oliver
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
Share this question
or