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.
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;
}
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
Thank you so much!