Hello,
I actually figured this one out. The page is supposed to check to see what header is chosen and it is missing the code. I took the code from another page that is functioning correctly and added it to the page and now it is working correctly.
To fix it I edited page single-team.php in the root flexform theme folder with the following code Add this code to the top of page right after line $member_image_url = wp_get_attachment_url( get_post_thumbnail_id(), ‘full’ ); but before the closing php tag ?>.
// BOF ADDED BY BATTERYMAN(BUG FIX)
$options = get_option('sf_flexform_options');
$default_show_page_heading = $options['default_show_page_heading'];
$default_page_heading_bg_alt = $options['default_page_heading_bg_alt'];
$show_page_title = get_post_meta($post->ID, 'sf_page_title', true);
$page_title_bg = get_post_meta($post->ID, 'sf_page_title_bg', true);
if ($page_title_bg == "") {
$page_title_bg = $default_page_heading_bg_alt;
}
// EOF ADDED BY BATTERYMAN(BUG FIX)