Wow what a quick reply! Thanks!
I found a very quick solution for this though, which actually replaces the category items in the bar with the page items.
In bfa_header_config.php find:
Code:
// Create menu list
echo bfa_hor_cats($bfa_ata['sorting_cat_menu_bar'], $bfa_ata['order_cat_menu_bar'],
$bfa_ata['levels_cat_menu_bar'], $bfa_ata['titles_cat_menu_bar'], $bfa_ata['exclude_cat_menu_bar']);
replace with:
Code:
// Create menu list
echo bfa_hor_pages($bfa_ata['sorting_page_menu_bar'], $bfa_ata['order_page_menu_bar'],
$bfa_ata['levels_page_menu_bar'], $bfa_ata['titles_page_menu_bar'], $bfa_ata['exclude_page_menu_bar']);
It seems to work fine! I presume if you want changes done to them you'll have to go through the Category Menu Bar options to change them - but that's no problemo for me.
Thanks for all of your assistance!