Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+6 votes
443 views
in Q2A Core by
edited by

How can I hide these counter numbers from categories in my website?

by
+2
You do do inspect element in browser, identify the CSS class and put display:none for that class in CSS style.
by
can you explain more?
where can I change exactly
by
+1
To inspect an element of a web page in your browser right-click that element and select "inspect" in the context menu.
To change the CSS style of an element or class edit your theme's CSS (usually qa-theme.css), find that element or class and modify its attributes.

1 Answer

0 votes
by
selected by
 
Best answer
Use this code:
 

span.qa-nav-cat-note {

  display: none;

}
by
Sorry, I`m not Programmer
Can you explain me where can I add that code?
...