Font Issues

This is the error I am getting :

“Font size and style overrides are only supported for dynamic fonts.”

I have read somewhere on the forums that when you import the font, you must set the character type to unicode… well, I am doing this and still getting that annoying error.

Would, and why, this be causing an error :

function OnGUI()
{
  var gui : GUIStyle = new GUIStyle();
  guiStyle.alignment = TextAnchor.MiddleCenter;
  GUI.Label(rec, "My String wants to centered, but the default should be left aligned", guiStyle);
}

Thanks in advance

You can’t have the font set to be “dynamic” in the “Character” properties, that should be all there is to that problem, really.

Other possible problems quoted from Derell Nar: