Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+2 votes
357 views
in Q2A Core by
When I have a site that is not very frequently visited, it does not help that questions remain unanswered for days or weeks.

How can I prevent it from showing how old the question is?

1 Answer

+2 votes
by
 
Best answer
Make a custom theme, and add these rules to your CSS file:

.qa-q-view-when {display:none;}
.qa-q-item-when {display:none;}
.qa-a-item-when {display:none;}

More about themes: http://www.question2answer.org/advanced.php#theme
...