Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
  • Register
Welcome to the Q&A for Question2Answer.

If you have questions about the platform, click here to ask and please use English.

If you just want to try Q2A, please use the demo, which also grants admin access.

Apr 29: Q2A 1.5.2

how can I modify categories in sidebar?

0 votes
I want to add title for categories list on sidebar, not the <li>All categories</li>

something like this:

<DIV CLASS="my-cat-header">My cat header</DIV>

<UL CLASS="qa-nav-cat-list qa-nav-cat-list-1">

  <LI CLASS="qa-nav-cat-item qa-nav-cat-plugins"><A HREF="./plugins" CLASS="qa-nav-cat-link">Plugins</A></LI>

  <LI CLASS="qa-nav-cat-item qa-nav-cat-all">
  <A HREF="./" CLASS="qa-nav-cat-link qa-nav-cat-selected">All categories</A>
</LI>

  </UL>
asked Dec 21, 2011 in Q2A Core by BubkaGob

1 Answer

0 votes
 
Best answer
Just go to .../qa-include/qa-lang-main.php and change in line 49 the term:

'all_categories' => 'All categories',

into

'all_categories' => 'Your desired title',

Thats it.

To change the titles design You can refer in the css file to:

.qa-nav-cat-all {}
answered Dec 21, 2011 by monk333
selected Dec 22, 2011 by BubkaGob