Move the mobile nav bars (hamburger bars) to a different position in Dynamik, when you moved primary nav or secondary nav, for example, so they will show up in the same places. http://cobaltapps.com/forum/forum/main-category/web-design-talk/27548-mobile-navigation-positioning-problem-using-custom-functions
//* Change genesis_after_header to genesis_before_header if that was the original position
//* Reposition the primary mobile nav inside header, for example
remove_action( 'genesis_after_header', 'dynamik_mobile_nav_1', 9 );
add_action( 'genesis_header', 'dynamik_mobile_nav_1', 10 );
//* Reposition the secondary mobile nav before footer, for example
remove_action( 'genesis_after_header', 'dynamik_mobile_nav_2' );
add_action( 'genesis_before_footer', 'dynamik_mobile_nav_2', 12 );