I was able to remove the space by adding this to the GM Neo Mobile function.php:
add_action(‘get_header’, ‘my_filter_head’);
function my_filter_head() {
remove_action(‘wp_head’, ‘_admin_bar_bump_cb’);
}
However, now the admin bar covers part of the header (actually this occurred before as well). It appears to me that the admin bar was spacing itself down and overlapping the header. Now that space is gone, but it still overlaps. Any suggestions?