Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
0 votes
478 views
in Q2A Core by
edited by
1. I want visitors to see only rating the issue and have not seen many answers to the question. How can I hide the block with a number of answers (with a yellow background) on the main page and all the others pages?

2. And how do I deselect a better answer?

Thanks.
_______________________________________________
Excuse my bad English. / * This is already a tradition =) * /

1 Answer

0 votes
by
 
Best answer
1. Use a custom theme and add the following CSS rule to qa-styles.css:

.qa-a-count {visibility:hidden;}

2. I'm not sure I understand the question, but you can deselect an answer by clicking the star next to it, so long as it's either your question, or you have the appropriate permission (depending on the setting in the Admin interface).
by
Wouldn't using display:none be better, i.e.
        .qa-a-count { display: none }
by
Yes it would indeed - I sometimes get those two confused...
...