Globe
Use an FTP client to modify the following file:
wp-content/themes/globe/theme/templates/header/navigation.php
Find (line 15):
| 1 | <div id="nav" class="nav header-nav <?php if( ! wp_is_mobile() ) echo 'section_fullwidth' ?>"> | 
Replace with:
| 1 | <div id="nav" class="header-nav <?php if( ! wp_is_mobile() ) echo 'section_fullwidth' ?>"> | 
From your WordPress dashboard, go to Globe > Custom Style and insert the following:
| 1 2 3 4 5 6 7 | .mobile-nav, #mobile-menu-trigger{    display: none !important;  } #header #nav {     display: block !important; } |