Quote:
Originally Posted by osama b mohammed
Hello,
i tried to add the below code to my theme and still have the category
div.ecwid-productBrowser-subcategories-categoryName {
display:none;
}
could you please advice give more steps for this ?
here is my website www.widewebtrade.com
thanks
|
The "div.ecwid-productBrowser-subcategories-categoryName" class is responsible for the category name, displayed in your store under the categories images. As far as i can see, there are no categories names displayed under categories thumbnails on your site.
if you would like to hide the categories names, displayed above the breadcrumbs, when a category is open, please also add the following rule to the end of your CSS theme (Ecwid control panel -> System Settings -> Design -> CSS Themes):
Code:
div.ecwid-productBrowser-head {
display: none;
}
and click "Save (Ctrl+S)".
Please note that this code will also hide the product titles, displayed above the breadcrumbs on the product details pages. So if you would like to keep the product titles displayed there, and have only the categories names hidden, the CSS rule should be the following:
Code:
div.ecwid-productBrowser-CategoryPage div.ecwid-productBrowser-head {
display: none;
}