Quote:
Originally Posted by JZ_67
Tried your suggestions,
please hekp with the code.
I need ti remove category icons form this page:
http://www.moleskines.lt/Uzrasu%20kn...
These do not work:
div.ecwid-productBrowser-CategoryPage-0 table.ecwid-productBrowser-subcategories-mainTable {
display: none;
}
table.ecwid-productBrowser-subcategories-mainTable {
display: none;
}
help
|
This should work, replace in your custom theme the last lines:
Code:
div.ecwid-productBrowser-list {
padding-top:0px;
div.ecwid-productBrowser-CategoryPage-0 table.ecwid-productBrowser-subcategories-mainTable {
display: none;
}
table.ecwid-productBrowser-subcategories-mainTable {
display: none;
}
with
Code:
div.ecwid-productBrowser-list {
padding-top:0px;
}
div.ecwid-productBrowser-CategoryPage-3520450 table.ecwid-productBrowser-subcategories-mainTable {
display: none;
}
Note the missing "}", maybe you deleted accidentally it when you added the subcategories code, and also the "3520450" that is the
categoryID of that category so the code won't affect for example your main category thumbnails.