Lutz
(Lutz Biermann)
12.Март.2017 15:39:40
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)
12.Март.2017 21:25:00
3
Except that will be a moving target if you have some categories only available to certain groups.
1 лайк
cpradio
(cpradio)
13.Март.2017 12:36:26
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 лайков
Lutz
(Lutz Biermann)
13.Март.2017 19:41:46
5
Wow thats great , thank you!
cpradio
(cpradio)
14.Март.2017 21:43:06
6
This is now merged, see prior post for how to hide a specific subcategory.
3 лайка
system
(system)
Закрыл(а) тему
12.Июнь.2019 22:55:55
8
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.