Lutz
(Lutz Biermann)
March 12, 2017, 3:39pm
1
I want to hide a specific Subcategory from the Hamburger Menu. Not all Subcategories from this Main-Category, only one. With this CSS I can select the link, but not the βliβ element.
.hamburger-panel li.category-link a.badge-wrapper.box[[href="/c/mycategory/mysubcategory"] {
display: none;
}
I need to get the li.category-link, but no idea how. Any ideas?
If you want to target a particular <li>
try using nth-child
cpradio
(cpradio)
March 12, 2017, 9:25pm
3
Except that will be a moving target if you have some categories only available to certain groups.
1 Like
cpradio
(cpradio)
March 13, 2017, 12:36pm
4
Targetting the li
element is now possible with
https://github.com/discourse/discourse/pull/4749
Using
.hamburger-panel li.category-link.category-mycategory-mysubcategory {
display: none;
}
11 Likes
Lutz
(Lutz Biermann)
March 13, 2017, 7:41pm
5
Wow thats great , thank you!
cpradio
(cpradio)
March 14, 2017, 9:43pm
6
This is now merged, see prior post for how to hide a specific subcategory.
3 Likes
system
(system)
Closed
June 12, 2019, 10:55pm
8
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.