Forum Replies Created

Viewing 1 replies (of 1 total)
  • <?php
    include(‘nav-menu-dropdown.php’);
    include(‘newtopbar.php’);
    if ( function_exists(‘has_nav_menu’) && has_nav_menu(‘mobile-menu’) ) {
    wp_nav_menu( array(
    ‘depth’ => 6,
    ‘sort_column’ => ‘menu_order’,
    ‘container’ => ‘ul’,
    ‘menu_id’ => ‘main-nav’,
    ‘menu_class’ => ‘nav mobile-menu’,
    ‘theme_location’ => ‘mobile-menu’,
    ‘walker’ => new Walker_Nav_Menu_Dropdown(),
    ‘items_wrap’ => ‘<div class=”mobile-menu”><form><select onchange=”if (this.value) window.location.href=this.value”>%3$s</select></form></div>’
    ) );
    } else {
    echo “<ul class=’nav mobile-menu’> <font style=’color:red’>Mobile Menu has not been set</font> “;
    } ?>
    </div>
    can i change style of single menu item.

Viewing 1 replies (of 1 total)