This is a bug, thank you for finding. To fix it in your version edit functions/bfa_theme_options.php
Replace
PHP Code:
array( "name" => "Font Size & Face",
"category" => "page-menu-bar",
"id" => $shortname."_page_menu_font",
"std" => "11px Arial, Verdana, sans-serif",
"type" => "text",
"size" => "30",
"info" => "Set both the font size and the font face for the menu items. Enclose font face names with a
space in quotes, i.e.:<br /><code>12px \"comic sans ms\", \"courier new\", arial, sans-serif</code><br />
<br />Don't use semicolons here."),
with
PHP Code:
array( "name" => "Font Size & Face",
"category" => "page-menu-bar",
"id" => $shortname."_page_menu_font",
"std" => "11px Arial, Verdana, sans-serif",
"type" => "text",
"size" => "30",
"editable" => "yes",
"info" => "Set both the font size and the font face for the menu items. Enclose font face names with a
space in quotes, i.e.:<br /><code>12px \"comic sans ms\", \"courier new\", arial, sans-serif</code><br />
<br />Don't use semicolons here."),
the same for the category menu bar:
Replace
PHP Code:
array( "name" => "Font for Category Menu Bar",
"category" => "cat-menu-bar",
"id" => $shortname."_cat_menu_font",
"std" => "11px Arial, Verdana, sans-serif",
"type" => "text",
"size" => "30",
"info" => "Set both the font size and the font face for the menu items. Enclose font face names
with a space in quotes, i.e.:<br /><code>12px \"comic sans ms\", \"courier new\", arial, sans-serif</code>
<br /><br />Don't use semicolons here."),
with
PHP Code:
array( "name" => "Font for Category Menu Bar",
"category" => "cat-menu-bar",
"id" => $shortname."_cat_menu_font",
"std" => "11px Arial, Verdana, sans-serif",
"type" => "text",
"size" => "30",
"editable" => "yes",
"info" => "Set both the font size and the font face for the menu items. Enclose font face names
with a space in quotes, i.e.:<br /><code>12px \"comic sans ms\", \"courier new\", arial, sans-serif</code>
<br /><br />Don't use semicolons here."),