I'm using the FormDecorator to decorate all controls. All looks great, but I would like to change the font being used to Calibri 11pt. I'm using a custom skin created for the FormDecorator which is placed in App_Themes. I've tried setting the font here, but no luck.
I attempted to set the font for all labels and buttons. Below are the changes I made to the FormDecorator (changes bold):
.RadForm_CustomSkin.rfdLabel label
{
color: #000;
font-size:11pt;
font-family: Calibri, Arial, Verdana;
}
*html .RadForm_CustomSkin a.rfdSkinnedButton,
*html .RadForm_CustomSkin .rfdSkinnedButton button,
*html .RadForm_CustomSkin .rfdSkinnedButton input.rfdDecorated,
.RadForm_CustomSkin.rfdButton a.rfdSkinnedButton,
.RadForm_CustomSkin.rfdButton a.rfdSkinnedButton *
{
background-image: url('FormDecorator/ButtonSprites.gif');
color: #000;
font-size:11pt;
font-family: Calibri, Arial, Verdana;
}
When I view the label from the IE developer toolbar, I see that ".rfdLabel.RadForm Label" is still using 12px Segoe UI, but I dont see this style anywhere in my custom skin. Could you please help me change the font for these controls?
Thanks!!