2013-01-11 66 views
0

擺脫空選擇菜單的我已經搜查,搜查。我無法找到如何在http://propelyourteam.com入門的WordPress的

CSS上線移去空選擇菜單

.select-menu, .select { 
display: none;} 

.menu-main-container { 
position: relative;} 

菜單腓

<div class="header-right"> 
       <?php wp_nav_menu(array('theme_location' => 'header', 'menu_id' => 'nav', 'menu_class' => 'nav-top', 'container' => '', 'container-class' => '',)); ?> 

       <div class="clear"></div> 
      </div> 

      <div class="clear"></div>` 

回答

0

在你custom.js文件69,你正在創建使用Mobile Menu插件看起來像是一個移動菜單。你可以找到更多關於如何使用插件here的信息。 (爲了正確選擇導航菜單項,它需要傳遞一些參數給函數)。

但是,如果你不想使用這個插件,你可以刪除線69並有可能也希望被包含在您functions.php停止。

+0

太謝謝你了!工作很好。 – user1971345