Anyone knows how to show this menu only inside the categories (/c/ url) with CSS?
Anyone knows how to show this menu only inside the categories (/c/ url) with CSS?
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
.
Thank you so much. This is the code I was looking for.
[class|="category"] ol.category-breadcrumb {
display: block;
}
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.