I just had an Ah Ha Moment!
O.k. here is my mistake.
I had put: ‘theme_location’ => ‘Services Navigation’
Services Navigation is the human readable name of the menu not what I registered it as in my functions.php as follows:
register_nav_menus( array(
‘primary’ => __( ‘Primary Navigation’),
‘services-nav’ => __( ‘Services Navigation’),
‘ourteam-nav’ => __( ‘Our Team Navigation’),
) );
So the code in services-page.php template should have been:
‘theme_location’ => ‘services-nav’
Thanks DMBarber for helping me out I appreciate it a lot. If I didn’t have someone to talk to about this I would have never figured it out.