Display all categories menu only inside the categories

59 02

45

Anyone knows how to show this menu only inside the categories (/c/ url) with CSS?

1 Like
ol.category-breadcrumb {
  display: none;
}

[class|="category"] ol.category-breadcrumb {
  display: block;
}

You can hide it using above custom CSS. If you like to hide only the category dropdown then use li.category-drop instead of ol.category-breadcrumb.

6 Likes

Thank you so much. This is the code I was looking for.

[class|="category"] ol.category-breadcrumb {
  display: block;
}
2 Likes

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