Menu order and drop down

  • Unknown's avatar

    Hi!

    Is there a way to make my menu for devices drop down, instead of pop out from the right?

    Also Is there a way to make the Primary menu listed first on that menu, then the secondary menu, and then the search bar?

    Thank you!

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Hi,

    I have seen your blog, for menu drop down you should use navigation bar it may be a vertical or horizontal.
    And for the search textbox you should place it in tag of

    [code breaking forum page removed by @thesacredpath]

    Thanks,
    Aakash Patel

  • Unknown's avatar

    Hi,

    I have seen your blog, for menu drop down you should use navigation bar it may be a vertical or horizontal.
    And for the search textbox you should place it in li tag of ul tag.

    Thanks,
    Aakash Patel

  • Unknown's avatar

    Hi great suggestions, but I am having trouble finding the css code for the menu to edit it. This type of coding is beyond what I know how to do within wordpress.com.

  • Unknown's avatar

    On the order of your items in the slide out on smaller screens, we can use the following. The only caveat is that this doesn’t work on some older browsers, and in the case of Internet Explorer, only on version 11 and later.

    #toggle-sidebar .mobile-navigation {
    	display: flex;
    	flex-direction: column;
    }
    #toggle-sidebar .mobile-navigation #primary-menu {
    	order: 1;
    }
    #toggle-sidebar .mobile-navigation #secondary-menu {
    	order: 2;
    }
    #toggle-sidebar .search-form {
    	order: 3;
    }
    #toggle-sidebar .mobile-navigation .social-list {
    	order: 4;
    }

    On the slide out, that is not something we can change. The theme actually rewrites the HTML. We would have to modify the theme php and javascript files, and we cannot do that at WordPress.com.

  • The topic ‘Menu order and drop down’ is closed to new replies.