Ok I have located the file if anyone needs to edit it, it is in best commerce -> includes -> theme-hooks.php
you will need to edit the following lines if
( ! function_exists( ‘best_commerce_mobile_navigation’ ) ) :
/**
* Mobile navigation.
*
* @since 1.0.0
*/
function best_commerce_mobile_navigation() {
?>
<div class=”mobile-nav-wrap”>
<i class=”fa fa-list-ul” aria-hidden=”true” > </i>
<?php $enable_category_menu = best_commerce_get_option( ‘enable_category_menu’ ); ?>
<?php if ( true === $enable_category_menu ) : ?>
<i class=”fa fa-folder-o” aria-hidden=”true”></i>
<?php endif; ?>
<div id=”mob-menu”>
<?php
wp_nav_menu( array(
‘theme_location’ => ‘primary’,
‘container’ => ”,
‘fallback_cb’ => ‘best_commerce_primary_navigation_fallback’,
) );
?>
</div><!– #mob-menu –>
</div><!– .mobile-nav-wrap –>
<?php
}