Forum Replies Created

Viewing 1 replies (of 1 total)
  • Thread Starter Jishnu Omanakuttan

    (@jishnuomanakuttan)

    Okay, then how can I make it. The code in current condition in ‘header.php’ is given:

    <?php if (option::get('menu_top_show') == 'on') { ?>
    	<nav id="nav-main-menu">
    
    		<a class="btn_menu" id="toggle" href="#"></a>
    
    		<div class="wrapper wrapper-menu">
    
    			<?php if (has_nav_menu( 'primary' )) {
    				wp_nav_menu( array('container' => '', 'container_class' => '', 'menu_class' => 'dropdown', 'menu_id' => '', 'sort_column' => 'menu_order', 'theme_location' => 'primary','items_wrap' => '<ul id="menu-main" class="dropdown">%3$s<li class="cleaner">&nbsp;</li></ul>'  ) );
    			}
    			else
    			{
    				echo '<p class="notice">Please set your Main Menu on the <a href="'.get_admin_url().'nav-menus.php">Appearance > Menus</a> page. For more information please <a href="#">read the documentation</a></p>';
    			}
    			?>
    
    		</div><!-- end .wrapper .wrapper-menu -->
    
    	</nav><!-- end #main-menu -->
    	<?php } ?>

    And one more thing, please help me out to make it as a button..

Viewing 1 replies (of 1 total)