Viewing 1 replies (of 1 total)
  • Hey.

    Your theme doesn’t add the .menu class the the main menu. Please create a php file in wp-content/mu-plugins (eg: my-menu-class.php) and add the code below:

    function _wpex_gopress_nav_menu_args( $args ) {
    	$args['menu_class'] .= ' menu';
    
    	return $args;
    }
    add_filter( 'wp_nav_menu_args', '_wpex_header_nav_menu_args' );
Viewing 1 replies (of 1 total)
  • The topic ‘Wrong icon position’ is closed to new replies.