How to move menu items to the drop down menu

How to move outside menu links, like My post, New, Unread, Top, Category to the drop down menu?

Or is there any way to just hide outside Category link from the menu? Because we only need the dropdown all category and not the outside one.

If you don’t want any of these links, you can hide them with CSS:

#navigation-bar {
    display: none;
}
1 Like

Only outside categories link I don’t want! Any way to hide that specific link?

I have used this to hide Categories & All tags!

#ember48 {
    display: none;
}

#ember35 {
    display: none;
}

Check out this #theme-component by @jordan-vidrine, it could be what you are looking for Discourse-Compact-Nav Component

3 Likes

Thank you so much! :heart:

1 Like

This topic was automatically closed 0 minutes after the last reply. New replies are no longer allowed.