Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+1 vote
2.6k views
in Q2A Core by

I want to hide this sub-navigation manu or remove the "Most answers" tab from this menu

sabmenu

And also hide or remove the Answers counter from the user page.

ans

 

Please help me to change the code to hide or remove this.

Q2A version: 1.6

1 Answer

+1 vote
by
selected by
 
Best answer

The easy way would be to hide them in CSS:

.qa-template-questions .qa-nav-sub-answers,
.qa-template-user #answers {
    display: none;
}
by
This is also going to help me, thanks for this pupi1985 :)
by
Thanks pupi1985 it work
...