How to remove Products Number display per categories

ToppaShop

New Member
Hi, i'm using the davinci theme where there's the categories display on the left,
what i don't like about it is that it's the showing the number of products per category,
how can i remove these numbers?
Thanks
 

Mar

Moderator
Hi, i'm using the davinci theme where there's the categories display on the left,
what i don't like about it is that it's the showing the number of products per category,
how can i remove these numbers?
Thanks
Add this code to your Additional CSS:

.left-sidebar .cat-item .main-el-count {
display: none;
}
 

ToppaShop

New Member
i received this message

"There are 2 errors which must be fixed before you can save.

Update anyway, even though it might break your site?"

what should i do?
 

Mar

Moderator
i received this message

"There are 2 errors which must be fixed before you can save.

Update anyway, even though it might break your site?"

what should i do?
Don't update. You will see the error when you hover in the red "x" and correct. Something is wrong, maybe some colon or semi colon or brackets for example are missing.
 

Mar

Moderator
Don't update. You will see the error when you hover in the red "x" and correct. Something is wrong, maybe some colon or semi colon or brackets for example are missing.
Add the code to Additional CSS:

.mobile-main-menu .cat_menu-list li i {
font-style: normal;
color: #999;
margin: 0 3px;
display: none;
}
 
Top