• Hello I want the menu to just show menu items without the + and – appearing.
    Please help me.
    Thanks.

Viewing 5 replies - 1 through 5 (of 5 total)
  • Theme Author nobita

    (@nobita)

    Hi @todga

    Customize / Presentation / Menu

    Primary Menu Automatic Responsive set No.

    With 640px or more + – menu will not be displayed

    Do you want to stop this function even under 640px?

    Thank you.

    • This reply was modified 6 years, 5 months ago by nobita.
    Thread Starter todga

    (@todga)

    Hello,
    I want to stop this function even under 640px?

    Thank you.

    Theme Author nobita

    (@nobita)

    for example

    recommend create a child theme

    header.php

    line:53

    
     raindrops_nav_menu_primary( );
    

    replace fllowing code

    
    $defaults = array(
    			'theme_location'	 => 'primary',
    
    			'container'			 => 'div',
    			'container_class'	 => 'menu-header',
    			'menu_class'		 => 'menu',
    			'fallback_cb'		 => 'wp_page_menu',
    			'items_wrap'		 => '<ul id="%1$s" class="%2$s" >%3$s</ul>',
    			'container_id'	 => 'access',
    			'item_spacing'		 => 'discard', // default 'preserve
    		);
                    wp_nav_menu($defaults);
    

    And

    Customize / additional CSS

    
    #top #access{
    display:block!important;
    }
    

    I have not tested it, but I think it maybe work.

    Please let me know if you do not work.

    Thank you.

    • This reply was modified 6 years, 5 months ago by nobita.
    • This reply was modified 6 years, 5 months ago by nobita.
    • This reply was modified 6 years, 5 months ago by nobita.
    Thread Starter todga

    (@todga)

    Hello,
    Thanks.
    I may test it.
    But why the + and – displays in large laptop?

    Theme Author nobita

    (@nobita)

    But why the + and – displays in large laptop?

    Maybe there are a lot of items in the top level menu and it does not fit in one line

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘How to remove expanding + and collapsing – menu’ is closed to new replies.