Select to view content in your preferred language

Flashbuilder question change default font

2159
2
09-01-2011 12:54 PM
PeteVitt
Frequent Contributor
Hi - I was wondering if anyone knew how to change the default application font in flashbuilder?  I'm using one of the flex themes (cobalt), but I dont see any font specification in the css for this theme

Thanks

Pete
Tags (2)
0 Kudos
2 Replies
PeteVitt
Frequent Contributor
if I put this in my main app it works
<fx:Style>
global
   {
     font-style: italic; //etc
   }
</fx:Style>
0 Kudos
YungKaiChin
Regular Contributor
I think font-family is the way to change your font

Example:

global
{
   font-family: Verdana, "_sans";
}
0 Kudos